Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/6b04faedbcb173c835088dd3623cc20657fdc24e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
2 additions and
2 deletions
@ -101,10 +101,10 @@ namespace NzbDrone.Core.Indexers.Newznab
{
if ( tvRageId > 0 )
{
return RecentFeed . Select ( url = > String . Format ( "{0}&limit=100&rid={1}&season={2:yyyy}&ep={2:MM /dd}", url , tvRageId , date ) ) . ToList ( ) ;
return RecentFeed . Select ( url = > String . Format ( "{0}&limit=100&rid={1}&season={2:yyyy}&ep={2:MM } /{2: dd}", url , tvRageId , date ) ) . ToList ( ) ;
}
return RecentFeed . Select ( url = > String . Format ( "{0}&limit=100&q={1}&season={2:yyyy}&ep={2:MM /dd}", url , NewsnabifyTitle ( seriesTitle ) , date ) ) . ToList ( ) ;
return RecentFeed . Select ( url = > String . Format ( "{0}&limit=100&q={1}&season={2:yyyy}&ep={2:MM } /{2: dd}", url , NewsnabifyTitle ( seriesTitle ) , date ) ) . ToList ( ) ;
}
public override IEnumerable < string > GetSeasonSearchUrls ( string seriesTitle , int tvRageId , int seasonNumber , int offset )