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

improve handling of disconnected drives

release-10.1.0
Luke Pulverenti 8 years ago
parent 2d0c98733a
commit 26f6f594ce

@ -648,15 +648,15 @@ namespace MediaBrowser.Controller.Entities
public static bool IsPathOffline(string path, List<string> allLibraryPaths)
{
if (FileSystem.FileExists(path))
{
return false;
}
//if (FileSystem.FileExists(path))
//{
// return false;
//}
var originalPath = path;
// Depending on whether the path is local or unc, it may return either null or '\' at the top
while (!string.IsNullOrEmpty(path) && path.Length > 1)
while (!string.IsNullOrWhiteSpace(path) && path.Length > 1)
{
if (FileSystem.DirectoryExists(path))
{

Loading…
Cancel
Save