Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/71c0a340e789968f19346d1b4f9547c4a7200c28
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
5 additions and
1 deletions
@ -179,10 +179,14 @@ namespace NzbDrone.Core.Test.Download.DownloadClientTests.SabProviderTests
. SetupGet ( s = > s . SabRecentTvPriority )
. Returns ( SabPriorityType . High ) ;
Mocker . GetMock < ISabCommunicationProxy > ( )
. Setup ( s = > s . DownloadNzb ( It . IsAny < Stream > ( ) , It . IsAny < String > ( ) , It . IsAny < String > ( ) , ( int ) SabPriorityType . High ) )
. Returns ( "{ \"status\": \"true\", \"nzo_ids\": [ \"sab_id_goes_here\" ] }" ) ;
Subject . DownloadNzb ( _remoteEpisode ) ;
Mocker . GetMock < ISabCommunicationProxy > ( )
. Verify ( v = > v . DownloadNzb ( It . IsAny < Stream > ( ) , It . IsAny < String > ( ) , It . IsAny < String > ( ) , ( int ) SabPriorityType . High ) , Times . Once ( ) ) ;
. Verify ( v = > v . DownloadNzb ( It . IsAny < Stream > ( ) , It . IsAny < String > ( ) , It . IsAny < String > ( ) , ( int ) SabPriorityType . High ) , Times . Once ( ) ) ;
}
}
}