From d94507a441437e1962ed482f56b55ba4dbe0009a Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sat, 14 Nov 2015 01:58:22 -0500 Subject: [PATCH] added query types --- .../Persistence/SqliteItemRepository.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs b/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs index dcf94f737d..adaab5b8aa 100644 --- a/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs +++ b/MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs @@ -1681,6 +1681,7 @@ namespace MediaBrowser.Server.Implementations.Persistence typeof(Movie), typeof(BoxSet), typeof(Episode), + typeof(ChannelVideoItem), typeof(Season), typeof(Series), typeof(Book), @@ -1698,7 +1699,8 @@ namespace MediaBrowser.Server.Implementations.Persistence typeof(UserView), typeof(Video), typeof(Year), - typeof(Channel) + typeof(Channel), + typeof(AggregateFolder) }; private static Dictionary GetTypeMapDictionary()