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

Filter user issues from Sentry

(cherry picked from commit 03d361f5537bfc0caba1b86085f974570942fdbc)
pull/1817/head v1.8.1.3837
Qstick 2 years ago committed by Bogdan
parent f83828cc22
commit 95c2531107

@ -50,7 +50,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