Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Sonarr/commit/5c4dc9ccb1bab58cfda297fed2d382787728d66d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
7 additions and
4 deletions
@ -19,7 +19,7 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
public virtual bool MonitoredEpisodesOnly { get ; set ; }
public virtual bool UserInvokedSearch { get ; set ; }
public List < string > QueryTitles = > SceneTitles . Select ( GetQueryTitle ) . ToList( ) ;
public List < string > QueryTitles = > SceneTitles . Select ( GetQueryTitle ) . Distinct( ) . ToList( ) ;
public static string GetQueryTitle ( string title )
{
@ -37,4 +37,4 @@ namespace NzbDrone.Core.IndexerSearch.Definitions
return cleanTitle . Trim ( '+' , ' ' ) ;
}
}
}
}
@ -237,9 +237,12 @@ namespace NzbDrone.Core.IndexerSearch
episodes . Select ( e = > e . SeasonNumber ) . Distinct ( ) . ToList ( ) ,
episodes . Select ( e = > e . SceneSeasonNumber ? ? e . SeasonNumber ) . Distinct ( ) . ToList ( ) ) ;
spec . Episodes = episodes ;
if ( ! spec . SceneTitles . Contains ( series . Title ) )
{
spec . SceneTitles . Add ( series . Title ) ;
}
spec . SceneTitles . Add ( series . Title ) ;
spec . Episodes = episodes ;
spec . UserInvokedSearch = userInvokedSearch ;
return spec ;