diff options
| -rw-r--r-- | Jellyfin.Api/Controllers/ImageController.cs | 3 | ||||
| -rw-r--r-- | MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/Jellyfin.Api/Controllers/ImageController.cs b/Jellyfin.Api/Controllers/ImageController.cs index 71ea8d14e..c08d18e2d 100644 --- a/Jellyfin.Api/Controllers/ImageController.cs +++ b/Jellyfin.Api/Controllers/ImageController.cs @@ -1901,8 +1901,7 @@ public class ImageController : BaseJellyfinApiController Blur = blur, BackgroundColor = backgroundColor, ForegroundLayer = foregroundLayer, - SupportedOutputFormats = outputFormats, - StrictCacheHandling = true + SupportedOutputFormats = outputFormats }; return await GetImageResult( diff --git a/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs b/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs index 02a4a8e18..953cfe698 100644 --- a/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs +++ b/MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs @@ -54,8 +54,6 @@ namespace MediaBrowser.Controller.Drawing public bool RequiresAutoOrientation { get; set; } - public bool StrictCacheHandling { get; set; } - private bool HasDefaultOptions(string originalImagePath) { return HasDefaultOptionsWithoutSize(originalImagePath) && |
