diff options
| author | Gen R <f5xs.0000a@gmail.com> | 2022-12-06 22:32:26 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-12-06 15:32:26 +0100 |
| commit | 681be595cea8254cbac5bbb3bdc9083c4780db21 (patch) | |
| tree | fd5b952702b7ab68cde819fdb63641fdbe80863f /Emby.Photos/PhotoProvider.cs | |
| parent | c6d714796c1f9fbeb113c00a0d6c6170ef3eeb9b (diff) | |
Add support for avif and webp for photos (#8857)
Diffstat (limited to 'Emby.Photos/PhotoProvider.cs')
| -rw-r--r-- | Emby.Photos/PhotoProvider.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Photos/PhotoProvider.cs b/Emby.Photos/PhotoProvider.cs index cef82b4d6..16e9b18e2 100644 --- a/Emby.Photos/PhotoProvider.cs +++ b/Emby.Photos/PhotoProvider.cs @@ -27,7 +27,7 @@ namespace Emby.Photos private readonly IImageProcessor _imageProcessor; // These are causing taglib to hang - private readonly string[] _includeExtensions = new string[] { ".jpg", ".jpeg", ".png", ".tiff", ".cr2" }; + private readonly string[] _includeExtensions = new string[] { ".jpg", ".jpeg", ".png", ".tiff", ".cr2", ".webp", ".avif" }; /// <summary> /// Initializes a new instance of the <see cref="PhotoProvider" /> class. |
