Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/5c055ebb9aa65b87f2e785899d3c1196ab1d064e
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
4 additions and
4 deletions
@ -34,7 +34,7 @@ namespace NzbDrone.Core.Providers
public virtual Episode GetEpisode ( long id )
{
return _database . Single OrDefault < Episode > ( id ) ;
return _database . Single < Episode > ( id ) ;
}
public virtual Episode GetEpisode ( int seriesId , int seasonNumber , int episodeNumber )
@ -54,7 +54,7 @@ namespace NzbDrone.Core.Providers
public virtual IndexerSetting GetSettings ( Type type )
{
return _database . Single OrDefault < IndexerSetting > ( "WHERE IndexProviderType = @0" , type . ToString ( ) ) ;
return _database . Single < IndexerSetting > ( "WHERE IndexProviderType = @0" , type . ToString ( ) ) ;
}
public virtual void InitializeIndexers ( IList < IndexerBase > indexers )
@ -196,7 +196,7 @@ namespace NzbDrone.Core.Providers
public virtual EpisodeFile GetEpisodeFile ( int episodeFileId )
{
return _database . Single OrDefault < EpisodeFile > ( episodeFileId ) ;
return _database . Single < EpisodeFile > ( episodeFileId ) ;
}
public virtual List < EpisodeFile > GetEpisodeFiles ( )
@ -53,7 +53,7 @@ namespace NzbDrone.Core.Providers
public virtual QualityProfile Get ( int profileId )
{
return _database . Single OrDefault < QualityProfile > ( profileId ) ;
return _database . Single < QualityProfile > ( profileId ) ;
}
public virtual void SetupDefaultProfiles ( )