Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/10515156d167950d5c4b6ad5261928e6c3430b8b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
28 deletions
@ -97,8 +97,7 @@ namespace NzbDrone.Core.Indexers.Torznab
}
if ( capabilities . SupportedTvSearchParameters ! = null & &
new [ ] { "q" , "tvdbid" , "rid" } . Any ( v = > capabilities . SupportedTvSearchParameters . Contains ( v ) ) & &
new [ ] { "season" , "ep" } . All ( v = > capabilities . SupportedTvSearchParameters . Contains ( v ) ) )
new [ ] { "q" , "imdbid" } . Any ( v = > capabilities . SupportedTvSearchParameters . Contains ( v ) ) )
{
return null ;
}
@ -39,10 +39,7 @@ namespace NzbDrone.Core.Indexers.Torznab
protected override ReleaseInfo ProcessItem ( XElement item , ReleaseInfo releaseInfo )
{
var torrentInfo = base . ProcessItem ( item , releaseInfo ) as TorrentInfo ;
torrentInfo . TvdbId = GetTvdbId ( item ) ;
torrentInfo . TvRageId = GetTvRageId ( item ) ;
torrentInfo . ImdbId = int . Parse ( GetImdbId ( item ) . Substring ( 2 ) ) ;
return torrentInfo ;
}
@ -100,31 +97,12 @@ namespace NzbDrone.Core.Indexers.Torznab
return url ;
}
protected virtual int GetTv dbId( XElement item )
protected virtual string GetIm dbId( XElement item )
{
var tvdbIdString = TryGetTorznabAttribute ( item , "tvdbid" ) ;
int tvdbId ;
if ( ! tvdbIdString . IsNullOrWhiteSpace ( ) & & int . TryParse ( tvdbIdString , out tvdbId ) )
{
return tvdbId ;
}
return 0 ;
var imdbIdString = TryGetTorznabAttribute ( item , "imdbid" ) ;
return ( ! imdbIdString . IsNullOrWhiteSpace ( ) ? imdbIdString . Substring ( 2 ) : null ) ;
}
protected virtual int GetTvRageId ( XElement item )
{
var tvRageIdString = TryGetTorznabAttribute ( item , "rageid" ) ;
int tvRageId ;
if ( ! tvRageIdString . IsNullOrWhiteSpace ( ) & & int . TryParse ( tvRageIdString , out tvRageId ) )
{
return tvRageId ;
}
return 0 ;
}
protected override string GetInfoHash ( XElement item )
{
return TryGetTorznabAttribute ( item , "infohash" ) ;