mirror of
https://github.com/Prowlarr/Prowlarr
synced 2026-01-04 14:53:49 +01:00
Fix regression in release analytics service after debounce added
Fixes #1193
This commit is contained in:
parent
9e37f69224
commit
d935b0df82
1 changed files with 1 additions and 1 deletions
|
|
@ -37,7 +37,7 @@ public ReleaseAnalyticsService(IHttpClient httpClient, IProwlarrCloudRequestBuil
|
|||
|
||||
public void HandleAsync(IndexerQueryEvent message)
|
||||
{
|
||||
if (message.QueryResult?.Releases != null)
|
||||
if (_analyticsService.IsEnabled && message.QueryResult?.Releases != null)
|
||||
{
|
||||
lock (_pendingUpdates)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue