2
0
Bond_009 5 жил өмнө
parent
commit
9b2cf8501f

+ 3 - 1
MediaBrowser.Api/UserLibrary/ItemsService.cs

@@ -228,7 +228,9 @@ namespace MediaBrowser.Api.UserLibrary
             var collectionFolders = _libraryManager.GetCollectionFolders(item);
             var collectionFolders = _libraryManager.GetCollectionFolders(item);
             foreach (var collectionFolder in collectionFolders)
             foreach (var collectionFolder in collectionFolders)
             {
             {
-                if (user.Policy.EnabledFolders.Contains(collectionFolder.Id.ToString("N"), StringComparer.OrdinalIgnoreCase))
+                if (user.Policy.EnabledFolders.Contains(
+                    collectionFolder.Id.ToString("N", CultureInfo.InvariantCulture),
+                    StringComparer.OrdinalIgnoreCase))
                 {
                 {
                     isInEnabledFolder = true;
                     isInEnabledFolder = true;
                 }
                 }