Update name so media paths store to correct library

pull/7525/head
Joe Rogers 2 years ago
parent ca67a48140
commit 784ed796ce
No known key found for this signature in database
GPG Key ID: 0074AD57B8FDBBB4

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

Loading…
Cancel
Save