Merge pull request #1032 from Lynxy/master

Correct the list of series types
This commit is contained in:
Bond-009 2019-03-02 18:11:53 +01:00 committed by GitHub
commit c4192f9f8b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2279,11 +2279,10 @@ namespace Emby.Server.Implementations.Data
private static readonly HashSet<string> _seriesTypes = new HashSet<string>(StringComparer.OrdinalIgnoreCase) private static readonly HashSet<string> _seriesTypes = new HashSet<string>(StringComparer.OrdinalIgnoreCase)
{ {
"Audio", "Book",
"MusicAlbum",
"MusicVideo",
"AudioBook", "AudioBook",
"AudioPodcast" "Episode",
"Season"
}; };
private bool HasSeriesFields(InternalItemsQuery query) private bool HasSeriesFields(InternalItemsQuery query)