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

Changed string.Length == 0 to string.IsNullOrEmpty in case of null

pull/5409/head
Ikomhoog 4 years ago
parent 480dd66428
commit d4201f812c

@ -63,7 +63,7 @@ namespace Emby.Server.Implementations.Library
{
newPath = null;
if (path.Length == 0 || subPath.Length == 0 || newSubPath.Length == 0 || subPath.Length > path.Length)
if (string.IsNullOrEmpty(path) || string.IsNullOrEmpty(subPath) || string.IsNullOrEmpty(newSubPath) || subPath.Length > path.Length)
{
return false;
}

Loading…
Cancel
Save