Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/57e1b6b4a0aa27272051afb7f4782fea14e1eb51
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
6 deletions
@ -355,11 +355,11 @@ namespace NzbDrone.Core.Indexers.Definitions
continue ;
}
var releaseInfo = _settings . EnableSonarrCompatibility & & categoryName = = "Anime" ? "S01" : "" ;
var editionTitle = torrent . EditionData . EditionTitle ;
int? episode = null ;
int? season = null ;
int? episode = null ;
var releaseInfo = string . Empty ;
var editionTitle = torrent . EditionData . EditionTitle ;
if ( editionTitle . IsNotNullOrWhiteSpace ( ) )
{
@ -383,11 +383,13 @@ namespace NzbDrone.Core.Indexers.Definitions
}
}
if ( _settings . EnableSonarrCompatibility & & season = = null )
if ( _settings . EnableSonarrCompatibility )
{
season = ParseSeasonFromTitles ( synonyms ) ;
season ?? = ParseSeasonFromTitles ( synonyms ) ;
}
season ? ? = _settings . EnableSonarrCompatibility & & categoryName = = "Anime" ? 1 : null ;
if ( season is > 0 | | episode is > 0 )
{
releaseInfo = string . Empty ;