diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-03-08 06:36:00 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-08 06:36:00 +0100 |
| commit | 80fb3dc2cb720269050a7a2d952bbb269c9e88c8 (patch) | |
| tree | a74c8a0a4e56b95f54fc98cc8ffd76e411189d77 /MediaBrowser.Controller | |
| parent | fcee64df09fc802edc9209a468cdad512117f35e (diff) | |
Fix error
Diffstat (limited to 'MediaBrowser.Controller')
| -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 154b9470e..e20641c99 100644 --- a/MediaBrowser.Controller/Entities/BaseItem.cs +++ b/MediaBrowser.Controller/Entities/BaseItem.cs @@ -39,7 +39,7 @@ namespace MediaBrowser.Controller.Entities /// <summary> /// The supported image extensions /// </summary> - public static readonly IReadOnlyList<string> SupportedImageExtensions + public static readonly string[] SupportedImageExtensions = new [] { ".png", ".jpg", ".jpeg", ".tbn", ".gif" }; private static readonly List<string> _supportedExtensions = new List<string>(SupportedImageExtensions) |
