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

move the split usage to the proper location

pull/2268/head
dkanada 5 years ago
parent d461f46bef
commit 536237c35d

@ -31,8 +31,8 @@ namespace Jellyfin.Server.Implementations.Tests.IO
if (MediaBrowser.Common.System.OperatingSystem.Id == OperatingSystemId.Windows)
{
var expectedWindowsPath = expectedAbsolutePath.Replace('/', '\\').Split(':')[1];
Assert.Equal(expectedWindowsPath, generatedPath);
var expectedWindowsPath = expectedAbsolutePath.Replace('/', '\\');
Assert.Equal(expectedWindowsPath, generatedPath.Split(':')[1]);
}
else
{

Loading…
Cancel
Save