Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Radarr/commit/a6f61b2722d2ff06ddacef715d4924bac1fc7b5f You should set ROOT_URL correctly, otherwise the web may not work correctly.

Filter user issues from Sentry ()

(cherry picked from commit 03d361f5537bfc0caba1b86085f974570942fdbc)
pull/8946/head v4.7.4.7758
Qstick 2 years ago
parent 54bb267e17
commit a6f61b2722

@ -49,7 +49,13 @@ namespace NzbDrone.Common.Instrumentation.Sentry
"UnauthorizedAccessException",
// Filter out people stuck in boot loops
"CorruptDatabaseException"
"CorruptDatabaseException",
// Filter SingleInstance Termination Exceptions
"TerminateApplicationException",
// User config issue, root folder missing, etc.
"DirectoryNotFoundException"
};
public static readonly List<string> FilteredExceptionMessages = new List<string>

Loading…
Cancel
Save