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

Added DiskProvider.PathEquals for UNC paths.

pull/2/head
kay.one 13 years ago
parent 7483d5d3a5
commit 3d214f0f0b

@ -134,6 +134,11 @@ namespace NzbDrone.Common.Test
[TestCase(@"c:\\\\\Test", @"C:\Test\\")]
[TestCase(@"c:\Test\\\\", @"C:\Test\\")]
[TestCase(@"c:\Test", @"C:\Test\\")]
[TestCase(@"\\Server\pool", @"\\Server\pool")]
[TestCase(@"\\Server\pool\", @"\\Server\pool")]
[TestCase(@"\\Server\pool", @"\\Server\pool\")]
[TestCase(@"\\Server\pool\", @"\\Server\pool\")]
[TestCase(@"\\smallcheese\DRIVE_G\TV-C\Simspsons", @"\\smallcheese\DRIVE_G\TV-C\Simspsons")]
public void paths_should_be_equeal(string first, string second)
{
DiskProvider.PathEquals(first, second).Should().BeTrue();

Loading…
Cancel
Save