prefix method name and updated nuget

This commit is contained in:
Luke Pulverenti
2013-05-23 11:52:40 -04:00
parent 47be566fc6
commit 376e1a44ee
5 changed files with 7 additions and 7 deletions

View File

@@ -642,7 +642,7 @@ namespace MediaBrowser.Controller.Drawing
}
// Cache name is created with supported enhancers combined with the last config change so we pick up new config changes
var cacheKeys = imageEnhancers.Select(i => i.ConfigurationCacheKey(item, imageType)).ToList();
var cacheKeys = imageEnhancers.Select(i => i.GetConfigurationCacheKey(item, imageType)).ToList();
cacheKeys.Add(originalImagePath + dateModified.Ticks);
return string.Join("|", cacheKeys.ToArray()).GetMD5();