Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/f6ccb5e17c8a0a4e888e7003f89d745a27b15ec3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
5 additions and
4 deletions
@ -143,7 +143,7 @@ namespace NzbDrone.Core.Providers
}
public virtual bool Renam eEpisodeFile( EpisodeFile episodeFile )
public virtual bool Mov eEpisodeFile( EpisodeFile episodeFile )
{
if ( episodeFile = = null )
throw new ArgumentNullException ( "episodeFile" ) ;
@ -135,10 +135,11 @@ namespace NzbDrone.Core.Providers
return series ;
}
//This will catch InvalidOperationExceptions that may be thrown for GetSeries due to the series being in SceneMapping, but not in the users Database
catch ( InvalidOperationException ex )
catch ( InvalidOperationException )
{
Logger . DebugException ( ex . Message , ex ) ;
//This will catch InvalidOperationExceptions(Sequence contains no element)
//that may be thrown for GetSeries due to the series being in SceneMapping, but not in the users Database
return null ;
}
}