fixup! Filter user issues from Sentry

This commit is contained in:
Qstick 2023-07-30 13:52:17 -05:00
parent 2f553117fd
commit 2adcf2bcb1
1 changed files with 4 additions and 1 deletions

View File

@ -43,7 +43,10 @@ namespace NzbDrone.Common.Instrumentation.Sentry
"CorruptDatabaseException",
// Filter SingleInstance Termination Exceptions
"TerminateApplicationException"
"TerminateApplicationException",
// User config issue, root folder missing, etc.
"DirectoryNotFoundException"
};
public static readonly List<string> FilteredExceptionMessages = new List<string>