Allow failing a Command using a specific message.

This commit is contained in:
Taloth Saldono 2015-01-25 21:10:49 +01:00
parent a058333f65
commit 8833f1ad31
2 changed files with 9 additions and 5 deletions

View file

@ -129,7 +129,11 @@ namespace NzbDrone.Core.Messaging.Commands
}
handler.Execute((TCommand)command);
_trackCommands.Completed(command);
if (command.State == CommandStatus.Running)
{
_trackCommands.Completed(command);
}
}
catch (Exception e)
{