Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/d3adb7ac40e23e73dd24bd1f875ed0e5170b2019
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
3 additions and
3 deletions
@ -48,7 +48,7 @@ namespace NzbDrone.Core.Test.IndexerTests.HDBitsTests
first . DownloadProtocol . Should ( ) . Be ( DownloadProtocol . Torrent ) ;
first . DownloadUrl . Should ( ) . Be ( "https://hdbits.org/download.php?id=257142&passkey=fakekey" ) ;
first . InfoUrl . Should ( ) . Be ( "https://hdbits.org/details.php?id=257142" ) ;
first . PublishDate . Should ( ) . Be ( DateTime . Parse ( "2015-04-04T20:30:46+0000" ) );
first . PublishDate . Should ( ) . Be ( DateTime . Parse ( "2015-04-04T20:30:46+0000" ) .ToUniversalTime ( ) );
first . Size . Should ( ) . Be ( 1718009717 ) ;
first . InfoHash . Should ( ) . Be ( "EABC50AEF9F53CEDED84ADF14144D3368E586F3A" ) ;
first . MagnetUrl . Should ( ) . BeNullOrEmpty ( ) ;
@ -63,7 +63,7 @@ namespace NzbDrone.Core.Indexers.HDBits
InfoUrl = GetInfoUrl ( id ) ,
Seeders = result . Seeders ,
Peers = result . Leechers + result . Seeders ,
PublishDate = result . Added
PublishDate = result . Added . ToUniversalTime ( )
} ) ;
}
@ -54,7 +54,7 @@ namespace NzbDrone.Core.Indexers.Rarbg
torrentInfo . Size = torrent . size ;
torrentInfo . DownloadUrl = torrent . download ;
torrentInfo . InfoUrl = torrent . info_page ;
torrentInfo . PublishDate = torrent . pubdate ;
torrentInfo . PublishDate = torrent . pubdate .ToUniversalTime ( ) ;
torrentInfo . Seeders = torrent . seeders ;
torrentInfo . Peers = torrent . leechers + torrent . seeders ;