Explorar o código

update queries

Luke Pulverenti %!s(int64=9) %!d(string=hai) anos
pai
achega
51d00cf3fd

+ 3 - 6
MediaBrowser.Controller/Entities/UserView.cs

@@ -132,11 +132,6 @@ namespace MediaBrowser.Controller.Entities
                 CollectionType.Playlists
             };
 
-            if (!ConfigurationManager.Configuration.EnableSharedCollectionViewImage)
-            {
-                standaloneTypes.Add(CollectionType.BoxSets);
-            }
-
             var collectionFolder = folder as ICollectionFolder;
 
             if (collectionFolder == null)
@@ -172,7 +167,9 @@ namespace MediaBrowser.Controller.Entities
                 CollectionType.Books, 
                 CollectionType.MusicVideos, 
                 CollectionType.HomeVideos, 
-                CollectionType.Photos
+                CollectionType.Photos, 
+                CollectionType.Music, 
+                CollectionType.BoxSets
             };
 
             return types.Contains(viewType ?? string.Empty, StringComparer.OrdinalIgnoreCase);

+ 2 - 2
MediaBrowser.Server.Implementations/Persistence/SqliteItemRepository.cs

@@ -1954,14 +1954,14 @@ namespace MediaBrowser.Server.Implementations.Persistence
 
             if (query.TopParentIds.Length == 1)
             {
-                whereClauses.Add("(TopParentId is null or TopParentId=@TopParentId)");
+                whereClauses.Add("(TopParentId=@TopParentId)");
                 cmd.Parameters.Add(cmd, "@TopParentId", DbType.String).Value = query.TopParentIds[0];
             }
             if (query.TopParentIds.Length > 1)
             {
                 var val = string.Join(",", query.TopParentIds.Select(i => "'" + i + "'").ToArray());
 
-                whereClauses.Add("(TopParentId is null or TopParentId in (" + val + "))");
+                whereClauses.Add("(TopParentId in (" + val + "))");
             }
 
             if (query.AncestorIds.Length == 1)

+ 2 - 2
SharedVersion.cs

@@ -1,4 +1,4 @@
 using System.Reflection;
 
-//[assembly: AssemblyVersion("3.0.*")]
-[assembly: AssemblyVersion("3.0.5781.2")]
+[assembly: AssemblyVersion("3.0.*")]
+//[assembly: AssemblyVersion("3.0.5781.2")]