Merge pull request #1071 from jellyfin/Bond-009-patch-1

Fix error from #1069
This commit is contained in:
Anthony Lavado 2019-03-08 02:36:54 -05:00 committed by GitHub
commit 40089e2fd9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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)