Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/a08297ec66b82d57fd11af9ba9d964aa494c6413
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
3 additions and
3 deletions
@ -19,7 +19,7 @@ namespace NzbDrone.Core.Indexers.HDBits
var pageableRequests = new IndexerPageableRequestChain ( ) ;
var query = new TorrentQuery ( ) ;
if ( searchCriteria . Categories .Length > 0 )
if ( searchCriteria . Categories ? .Length > 0 )
{
query . Category = Capabilities . Categories . MapTorznabCapsToTrackers ( searchCriteria . Categories ) . Select ( int . Parse ) . ToArray ( ) ;
}
@ -82,7 +82,7 @@ namespace NzbDrone.Core.Indexers.HDBits
var pageableRequests = new IndexerPageableRequestChain ( ) ;
var query = new TorrentQuery ( ) ;
if ( searchCriteria . Categories .Length > 0 )
if ( searchCriteria . Categories ? .Length > 0 )
{
query . Category = Capabilities . Categories . MapTorznabCapsToTrackers ( searchCriteria . Categories ) . Select ( int . Parse ) . ToArray ( ) ;
}
@ -117,7 +117,7 @@ namespace NzbDrone.Core.Indexers.HDBits
var pageableRequests = new IndexerPageableRequestChain ( ) ;
var query = new TorrentQuery ( ) ;
if ( searchCriteria . Categories .Length > 0 )
if ( searchCriteria . Categories ? .Length > 0 )
{
query . Category = Capabilities . Categories . MapTorznabCapsToTrackers ( searchCriteria . Categories ) . Select ( int . Parse ) . ToArray ( ) ;
}