Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/1cce39b404290cd1564a3e19ee8ab54ba9a1834a
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
2 deletions
@ -50,7 +50,7 @@ namespace NzbDrone.Core.Test.IndexerTests.OrpheusTests
torrentInfo . InfoUrl . Should ( ) . Be ( "https://orpheus.network/torrents.php?id=466&torrentid=1902448" ) ;
torrentInfo . CommentUrl . Should ( ) . BeNullOrEmpty ( ) ;
torrentInfo . Indexer . Should ( ) . Be ( Subject . Definition . Name ) ;
torrentInfo . PublishDate . Should ( ) . Be ( DateTime . Parse ( "2022-08-0 7 21:07:39") . ToUniversalTime ( ) ) ;
torrentInfo . PublishDate . Should ( ) . Be ( DateTime . Parse ( "2022-08-0 8 2:07:39" ) ) ;
torrentInfo . Size . Should ( ) . Be ( 68296866 ) ;
torrentInfo . InfoHash . Should ( ) . Be ( null ) ;
torrentInfo . MagnetUrl . Should ( ) . Be ( null ) ;
@ -281,7 +281,7 @@ namespace NzbDrone.Core.Indexers.Definitions
InfoUrl = infoUrl ,
Seeders = int . Parse ( result . Seeders ) ,
Peers = int . Parse ( result . Leechers ) + int . Parse ( result . Seeders ) ,
PublishDate = long . TryParse ( result . GroupTime , out var num ) ? DateTimeOffset . FromUnixTimeSeconds ( num ) . UtcDateTime : DateTimeUtil . FromFuzzyTime ( ( string ) result . GroupTime ) ,
PublishDate = long . TryParse ( result . GroupTime , out var num ) ? DateTimeOffset . FromUnixTimeSeconds ( num ) . UtcDateTime : DateTimeUtil . FromFuzzyTime ( result . GroupTime ) ,
Freeleech = result . IsFreeLeech | | result . IsPersonalFreeLeech ,
Files = result . FileCount ,
Grabs = result . Snatches ,