Fixed: Don't lock command queue if updating is disabled

This commit is contained in:
Qstick
2020-04-23 18:37:21 -04:00
committed by ta264
parent f94a286479
commit 8c6ecd3b7a
3 changed files with 58 additions and 27 deletions
@@ -0,0 +1,11 @@
using NzbDrone.Core.Messaging.Commands;
namespace NzbDrone.Core.Update.Commands
{
public class ApplicationUpdateCheckCommand : Command
{
public override bool SendUpdatesToClient => true;
public override string CompletionMessage => null;
}
}