aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2023-03-09 11:16:08 +0100
committerGitHub <noreply@github.com>2023-03-09 11:16:08 +0100
commitddadacf137267662d11cbae1dac0e65d505229fe (patch)
tree6ee129381cdc9214eba98b5908d1d5dc788cbc0e /MediaBrowser.Controller
parent205a072822b6a1dc2fcd3615b9de61a0d0591d57 (diff)
parent761b9ed6a1d7fa5f097e7baaa68fe480ceca82d6 (diff)
Merge pull request #9454 from Bond-009/webp
Allow webp for local images
Diffstat (limited to 'MediaBrowser.Controller')
-rw-r--r--MediaBrowser.Controller/Entities/BaseItem.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs
index b8601cccd9..8fe9cfa7f9 100644
--- a/MediaBrowser.Controller/Entities/BaseItem.cs
+++ b/MediaBrowser.Controller/Entities/BaseItem.cs
@@ -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)
{