Browse Source

Fix move condition

Luis Miguel Almánzar 12 years ago
parent
commit
ac569421a9
1 changed files with 6 additions and 0 deletions
  1. 6 0
      MediaBrowser.Api/Library/LibraryHelpers.cs

+ 6 - 0
MediaBrowser.Api/Library/LibraryHelpers.cs

@@ -76,6 +76,11 @@ namespace MediaBrowser.Api.Library
             }
 
             if (!string.Equals(currentPath, newPath, StringComparison.OrdinalIgnoreCase) && Directory.Exists(newPath))
+            {
+                throw new ArgumentException("There is already a media collection with the name " + newPath + ".");
+            }
+            //Only make a two-phase move when changing capitalization
+            if (string.Equals(currentPath, newPath, StringComparison.OrdinalIgnoreCase))
             {
                 //Create an unique name
                 var temporaryName = Guid.NewGuid().ToString();
@@ -83,6 +88,7 @@ namespace MediaBrowser.Api.Library
                 Directory.Move(currentPath,temporaryPath);
                 currentPath = temporaryPath;
             }
+
             Directory.Move(currentPath, newPath);
         }