Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/e086eebb71f7d950750e7a21ec4c059f6f352458 You should set ROOT_URL correctly, otherwise the web may not work correctly.

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

(cherry picked from commit bebe1808ce)
Signed-off-by: crobibero <cody@robibe.ro>
pull/7575/head
Cody Robibero 3 years ago committed by crobibero
parent 1960b5bdce
commit e086eebb71

@ -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;

Loading…
Cancel
Save