mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	Merge pull request #7525 from 1337joe/fix-duplicate-library-media-paths
This commit is contained in:
		
						commit
						bebe1808ce
					
				@ -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…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user