Merge pull request #7525 from 1337joe/fix-duplicate-library-media-paths

This commit is contained in:
Cody Robibero 2022-03-30 20:10:12 -06:00 committed by GitHub
commit bebe1808ce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2840,10 +2840,12 @@ namespace Emby.Server.Implementations.Library
var existingNameCount = 1; // first numbered name will be 2
var virtualFolderPath = Path.Combine(rootFolderPath, name);
var originalName = name;
while (Directory.Exists(virtualFolderPath))
{
existingNameCount++;
virtualFolderPath = Path.Combine(rootFolderPath, name + " " + existingNameCount);
name = originalName + existingNameCount;
virtualFolderPath = Path.Combine(rootFolderPath, name);
}
var mediaPathInfos = options.PathInfos;