Fix regression in release analytics service after debounce added

Fixes #1193
This commit is contained in:
Qstick 2022-11-10 17:39:14 -06:00
parent 9e37f69224
commit d935b0df82

View file

@ -37,7 +37,7 @@ namespace NzbDrone.Core.IndexerSearch
public void HandleAsync(IndexerQueryEvent message)
{
if (message.QueryResult?.Releases != null)
if (_analyticsService.IsEnabled && message.QueryResult?.Releases != null)
{
lock (_pendingUpdates)
{