fix image caching being too aggressive

This commit is contained in:
Luke Pulverenti
2013-11-15 11:00:39 -05:00
parent 132a81b50c
commit 016477d88d
2 changed files with 14 additions and 15 deletions

View File

@@ -52,8 +52,7 @@ namespace MediaBrowser.Controller.Drawing
public bool HasDefaultOptionsWithoutSize()
{
return !CropWhiteSpace &&
(!Quality.HasValue || Quality.Value == 100) &&
return (!Quality.HasValue || Quality.Value == 100) &&
IsOutputFormatDefault &&
!AddPlayedIndicator &&
!PercentPlayed.HasValue &&