1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-03 05:25:10 +00:00

Don't block task queue for queued update task for Refresh Artist

This commit is contained in:
Bogdan 2023-10-29 15:37:13 +02:00
parent cbb3cb78f9
commit 11e6d830b0

View file

@ -37,5 +37,7 @@ public RefreshArtistCommand(List<int> artistIds, bool isNewArtist = false)
public override bool SendUpdatesToClient => true;
public override bool UpdateScheduledTask => ArtistIds.Empty();
public override bool IsLongRunning => true;
}
}