Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/054d1600a217604606ea425020fa976596f217b4
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
8 additions and
1 deletions
@ -8,6 +8,13 @@ namespace NzbDrone.Mono.Test.DiskProviderTests
[Platform("Mono")]
public class FreeSpaceFixture : FreeSpaceFixtureBase < DiskProvider >
{
[SetUp]
public void Setup ( )
{
Mocker . SetConstant < ISymbolicLinkResolver > ( Mocker . Resolve < SymbolicLinkResolver > ( ) ) ;
Mocker . SetConstant < IProcMountProvider > ( Mocker . Resolve < ProcMountProvider > ( ) ) ;
}
public FreeSpaceFixture ( )
{
MonoOnly ( ) ;
@ -38,7 +38,7 @@ if [ "$PLATFORM" = "Windows" ]; then
mkdir -p " $ProgramData /Lidarr "
WHERE = " $WHERE && cat != LINUX "
elif [ " $PLATFORM " = "Linux" ] || [ " $PLATFORM " = "Mac" ] ; then
mkdir -p " ~/.config/Lidarr"
mkdir -p ~/.config/Lidarr
WHERE = " $WHERE && cat != WINDOWS "
NUNIT_COMMAND = " mono --debug --runtime=v4.0 $NUNIT "
else