1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-02-14 12:20:55 +02:00

Added missing SentryEnabled check

This commit is contained in:
Taloth Saldono 2019-08-30 20:40:35 +02:00
parent 354ddcfee5
commit e96d05149c

View File

@ -251,7 +251,7 @@ namespace NzbDrone.Common.Instrumentation.Sentry
protected override void Write(LogEventInfo logEvent)
{
if (_unauthorized)
if (_unauthorized || !SentryEnabled)
{
return;
}