pull/1154/head
Luke Pulverenti 7 years ago
parent cdd79ec7e2
commit 983c249d39

@ -736,7 +736,8 @@ namespace Emby.Drawing
{
var filename = (originalImagePath + dateModified.Ticks.ToString(UsCulture)).GetMD5().ToString("N");
var outputPath = Path.Combine(_appPaths.ImageCachePath, "converted-images", filename + ".webp");
var cacheExtension = _mediaEncoder().SupportsEncoder("libwebp") ? ".webp" : ".png";
var outputPath = Path.Combine(_appPaths.ImageCachePath, "converted-images", filename + cacheExtension);
var file = _fileSystem.GetFileInfo(outputPath);
if (!file.Exists)

@ -1,3 +1,3 @@
using System.Reflection;
[assembly: AssemblyVersion("3.2.30.24")]
[assembly: AssemblyVersion("3.2.30.25")]

Loading…
Cancel
Save