Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/9db628969359470f81741588e4b6f6e87f43bc49
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
1 deletions
@ -1,4 +1,5 @@
using System ;
using System.Data.SQLite ;
using System.Globalization ;
using System.Linq ;
using FluentAssertions ;
@ -21,6 +22,7 @@ namespace NzbDrone.Common.Test.InstrumentationTests
private static Exception [ ] FilteredExceptions = new Exception [ ]
{
new UnauthorizedAccessException ( ) ,
new SQLiteException ( SQLiteErrorCode . Locked , "database is locked" ) ,
new AggregateException ( new Exception [ ]
{
new UnauthorizedAccessException ( ) ,
@ -30,6 +32,7 @@ namespace NzbDrone.Common.Test.InstrumentationTests
private static Exception [ ] NonFilteredExceptions = new Exception [ ]
{
new SQLiteException ( SQLiteErrorCode . Error , "it's borked" ) ,
new AggregateException ( new Exception [ ]
{
new UnauthorizedAccessException ( ) ,
@ -248,7 +248,7 @@ namespace NzbDrone.Common.Instrumentation.Sentry
var isSentry = true ;
var sqlEx = ex as SQLiteException ;
if ( sqlEx ! = null & & ! FilteredSQLiteErrors . Contains ( sqlEx . ResultCode ) )
if ( sqlEx ! = null & & FilteredSQLiteErrors . Contains ( sqlEx . ResultCode ) )
{
isSentry = false ;
}