Skip to content

Commit

Permalink
3.2.30.25
Browse files Browse the repository at this point in the history
  • Loading branch information
LukePulverenti committed Sep 18, 2017
1 parent 33703bf commit f5884da
Show file tree
Hide file tree
Showing 6 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Emby.Drawing/ImageProcessor.cs
Expand Up @@ -736,7 +736,8 @@ public string GetImageCacheTag(IHasMetadata item, ItemImageInfo image, List<IIma
{
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)
Expand Down
2 changes: 1 addition & 1 deletion SharedVersion.cs
@@ -1,3 +1,3 @@
using System.Reflection;

[assembly: AssemblyVersion("3.2.30.24")]
[assembly: AssemblyVersion("3.2.30.25")]
Binary file modified ThirdParty/emby/Emby.Server.CinemaMode.dll
Binary file not shown.
Binary file modified ThirdParty/emby/Emby.Server.Connect.dll
Binary file not shown.
Binary file modified ThirdParty/emby/Emby.Server.MediaEncoding.dll
Binary file not shown.
Binary file modified ThirdParty/emby/Emby.Server.Sync.dll
Binary file not shown.

0 comments on commit f5884da

Please sign in to comment.