aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJPVenson <github@jpb.email>2025-07-27 21:17:20 +0000
committerJPVenson <github@jpb.email>2025-07-27 21:17:20 +0000
commit5b544bf1ed4767b7dea7a17a99f2da8c3a6c8b82 (patch)
tree3f1bbff962c7abdc0ca26be7679d316048c55a5f
parent1a1d9b2404006aacdaf5c04fbd22eadf37d32cc5 (diff)
Remove even obsoleter code
-rw-r--r--Jellyfin.Api/Controllers/ImageController.cs3
-rw-r--r--MediaBrowser.Controller/Drawing/ImageProcessingOptions.cs2
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) &&