diff options
| author | theguymadmax <theguymadmax@proton.me> | 2024-08-15 23:18:40 -0400 |
|---|---|---|
| committer | theguymadmax <theguymadmax@proton.me> | 2024-08-15 23:18:40 -0400 |
| commit | 065ec7ec0b00750f59dd5b0c6c5a1b37c037b90e (patch) | |
| tree | 7e6fadd9b9acbdc93626b75b55c1717e27fa9f11 | |
| parent | ffecdfc18cbe4e97f6812f00ee97364c99fc5726 (diff) | |
Allow svg for local images
| -rw-r--r-- | MediaBrowser.Controller/Entities/BaseItem.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs index 4d0e88a22..634f34681 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", ".webp", ".tbn", ".gif" }; + = new[] { ".png", ".jpg", ".jpeg", ".webp", ".tbn", ".gif", ".svg" }; private static readonly List<string> _supportedExtensions = new List<string>(SupportedImageExtensions) { |
