mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 22:17:25 -04:00
Allow webp for local images (backport) (#9831)
This commit is contained in:
parent
702347df50
commit
2b98ce052e
1 changed files with 1 additions and 1 deletions
|
@ -47,7 +47,7 @@ namespace MediaBrowser.Controller.Entities
|
|||
/// The supported image extensions.
|
||||
/// </summary>
|
||||
public static readonly string[] SupportedImageExtensions
|
||||
= new[] { ".png", ".jpg", ".jpeg", ".tbn", ".gif" };
|
||||
= new[] { ".png", ".jpg", ".jpeg", ".webp", ".tbn", ".gif" };
|
||||
|
||||
private static readonly List<string> _supportedExtensions = new List<string>(SupportedImageExtensions)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue