Luke Pulverenti 8 rokov pred
rodič
commit
f5d37ed659

+ 1 - 1
MediaBrowser.Server.Implementations/Channels/RefreshChannelsScheduledTask.cs

@@ -35,7 +35,7 @@ namespace MediaBrowser.Server.Implementations.Channels
 
         public string Category
         {
-            get { return "Channels"; }
+            get { return "Internet Channels"; }
         }
 
         public async Task Execute(System.Threading.CancellationToken cancellationToken, IProgress<double> progress)

+ 2 - 2
MediaBrowser.Server.Implementations/Library/LibraryManager.cs

@@ -2882,12 +2882,12 @@ namespace MediaBrowser.Server.Implementations.Library
             {
                 var libraryOptions = CollectionFolder.GetLibraryOptions(virtualFolderPath);
 
-                SyncLibraryOptionsToLocations(virtualFolderPath, libraryOptions);
-
                 var list = libraryOptions.PathInfos.ToList();
                 list.Add(pathInfo);
                 libraryOptions.PathInfos = list.ToArray();
 
+                SyncLibraryOptionsToLocations(virtualFolderPath, libraryOptions);
+
                 CollectionFolder.SaveLibraryOptions(virtualFolderPath, libraryOptions);
             }
         }