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

fixed broken test

pull/6/head
kay.one 12 years ago
parent 25e6473537
commit 3e65c393fd

@ -58,7 +58,15 @@ namespace NzbDrone.Common
//Drive letter
return dirInfo.Name.ToUpper();
}
return Path.Combine(GetProperCapitalization(parentDirInfo), parentDirInfo.GetDirectories(dirInfo.Name)[0].Name);
var folderName = dirInfo.Name;
if (dirInfo.Exists)
{
folderName = parentDirInfo.GetDirectories(dirInfo.Name)[0].Name;
}
return Path.Combine(GetProperCapitalization(parentDirInfo), folderName);
}
public static string GetActualCasing(this string path)

Loading…
Cancel
Save