aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-23 22:58:25 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2016-02-23 22:58:25 -0500
commit94fa4dce4d78eeba45347b9ec0c7167957b70395 (patch)
tree57f68bd20ba5e046a65cf3039040330eada01c0b
parentc7fe8587cbf9e42f195d06aab07a719f991fbb9e (diff)
fix GetCacheFilePath
-rw-r--r--Emby.Drawing/ImageProcessor.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Drawing/ImageProcessor.cs b/Emby.Drawing/ImageProcessor.cs
index ef608d266..89e2649b5 100644
--- a/Emby.Drawing/ImageProcessor.cs
+++ b/Emby.Drawing/ImageProcessor.cs
@@ -234,7 +234,7 @@ namespace Emby.Drawing
var quality = options.Quality;
var outputFormat = GetOutputFormat(options.SupportedOutputFormats[0]);
- var cacheFilePath = GetCacheFilePath(originalImagePath, newSize, quality, dateModified, outputFormat, options.AddPlayedIndicator, options.PercentPlayed, options.UnplayedCount, options.BackgroundColor);
+ var cacheFilePath = GetCacheFilePath(originalImagePath, newSize, quality, dateModified, outputFormat, options.AddPlayedIndicator, options.PercentPlayed, options.UnplayedCount, options.BackgroundColor, options.ForegroundLayer);
var semaphore = GetLock(cacheFilePath);