Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/fc5e2b63e01c48abd4009a5e96e3a458b525cdd8
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
4 additions and
1 deletions
@ -22,7 +22,8 @@ namespace NzbDrone.Common.Test.InstrumentationTests
private static Exception [ ] FilteredExceptions = new Exception [ ] {
new UnauthorizedAccessException ( ) ,
new TinyIoC . TinyIoCResolutionException ( typeof ( string ) )
new TinyIoC . TinyIoCResolutionException ( typeof ( string ) ) ,
new OutOfMemoryException ( )
} ;
[SetUp]
@ -38,6 +38,8 @@ namespace NzbDrone.Common.Instrumentation.Sentry
private static readonly HashSet < string > FilteredExceptionTypeNames = new HashSet < string > {
// UnauthorizedAccessExceptions will just be user configuration issues
"UnauthorizedAccessException" ,
// Out Of Memory isn't very informative
"OutOfMemoryException" ,
// Filter out people stuck in boot loops
"CorruptDatabaseException" ,
// This also filters some people in boot loops