diff options
| author | Bond-009 <bond.009@outlook.com> | 2019-03-02 18:11:53 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-03-02 18:11:53 +0100 |
| commit | c4192f9f8b5910e7ecfa0ab4e7bb2204f578a351 (patch) | |
| tree | 8c201325961b6b40fd3e2ef5cf1e02bb38c3245f | |
| parent | 594b2713832dfd56b70a505d25288467003805af (diff) | |
| parent | 5368112d903fc29a1ab3e4fa11abed08358a6cbb (diff) | |
Merge pull request #1032 from Lynxy/master
Correct the list of series types
| -rw-r--r-- | Emby.Server.Implementations/Data/SqliteItemRepository.cs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs index 70e5fa640..06f6563a3 100644 --- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs +++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs @@ -2279,11 +2279,10 @@ namespace Emby.Server.Implementations.Data private static readonly HashSet<string> _seriesTypes = new HashSet<string>(StringComparer.OrdinalIgnoreCase) { - "Audio", - "MusicAlbum", - "MusicVideo", + "Book", "AudioBook", - "AudioPodcast" + "Episode", + "Season" }; private bool HasSeriesFields(InternalItemsQuery query) |
