From 11e6d830b02a4ab42c785b887cff3c5aae8232d6 Mon Sep 17 00:00:00 2001 From: Bogdan Date: Sun, 29 Oct 2023 15:37:13 +0200 Subject: [PATCH] Don't block task queue for queued update task for Refresh Artist --- src/NzbDrone.Core/Music/Commands/RefreshArtistCommand.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/NzbDrone.Core/Music/Commands/RefreshArtistCommand.cs b/src/NzbDrone.Core/Music/Commands/RefreshArtistCommand.cs index 8a6cd60f2..56eb1debf 100644 --- a/src/NzbDrone.Core/Music/Commands/RefreshArtistCommand.cs +++ b/src/NzbDrone.Core/Music/Commands/RefreshArtistCommand.cs @@ -37,5 +37,7 @@ public RefreshArtistCommand(List artistIds, bool isNewArtist = false) public override bool SendUpdatesToClient => true; public override bool UpdateScheduledTask => ArtistIds.Empty(); + + public override bool IsLongRunning => true; } }