mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-07 18:24:19 -04:00
Fix move condition
This commit is contained in:
parent
7b3edb8737
commit
ac569421a9
@ -76,6 +76,11 @@ namespace MediaBrowser.Api.Library
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (!string.Equals(currentPath, newPath, StringComparison.OrdinalIgnoreCase) && Directory.Exists(newPath))
|
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
|
//Create an unique name
|
||||||
var temporaryName = Guid.NewGuid().ToString();
|
var temporaryName = Guid.NewGuid().ToString();
|
||||||
@ -83,6 +88,7 @@ namespace MediaBrowser.Api.Library
|
|||||||
Directory.Move(currentPath,temporaryPath);
|
Directory.Move(currentPath,temporaryPath);
|
||||||
currentPath = temporaryPath;
|
currentPath = temporaryPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
Directory.Move(currentPath, newPath);
|
Directory.Move(currentPath, newPath);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user