mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-21 20:35:36 +02:00
Add support for avif and webp for photos (#8857)
This commit is contained in:
parent
c6d714796c
commit
681be595ce
1 changed files with 1 additions and 1 deletions
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Reference in a new issue