diff options
| author | Anthony Lavado <anthony@lavado.ca> | 2020-10-13 00:02:08 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-10-13 00:02:08 -0400 |
| commit | 1f5ac193464dbbecdbc72aeef72688328f93889a (patch) | |
| tree | 755dba34b467d4dff5adf93c1a3a3f6fe43a7fb4 /Emby.Drawing/ImageProcessor.cs | |
| parent | 42fb04b08437f2ffa79aed5c0d8c3b66b081f240 (diff) | |
| parent | 2a84d5a6933842e99b3b1f734e9a2b7241705a7f (diff) | |
Merge pull request #3954 from Ullmie02/library-pictures
Use backdrop with library name as library thumbnail
Diffstat (limited to 'Emby.Drawing/ImageProcessor.cs')
| -rw-r--r-- | Emby.Drawing/ImageProcessor.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Emby.Drawing/ImageProcessor.cs b/Emby.Drawing/ImageProcessor.cs index ed20292f6..8a2301d2d 100644 --- a/Emby.Drawing/ImageProcessor.cs +++ b/Emby.Drawing/ImageProcessor.cs @@ -36,7 +36,7 @@ namespace Emby.Drawing private readonly IImageEncoder _imageEncoder; private readonly IMediaEncoder _mediaEncoder; - private bool _disposed = false; + private bool _disposed; /// <summary> /// Initializes a new instance of the <see cref="ImageProcessor"/> class. @@ -466,11 +466,11 @@ namespace Emby.Drawing } /// <inheritdoc /> - public void CreateImageCollage(ImageCollageOptions options) + public void CreateImageCollage(ImageCollageOptions options, string? libraryName) { _logger.LogInformation("Creating image collage and saving to {Path}", options.OutputPath); - _imageEncoder.CreateImageCollage(options); + _imageEncoder.CreateImageCollage(options, libraryName); _logger.LogInformation("Completed creation of image collage and saved to {Path}", options.OutputPath); } |
