Fixed: Manual refresh of all series will refresh every series, including ended series

This commit is contained in:
Mark McDowall
2014-09-10 23:49:25 -07:00
parent 81e80d5575
commit 1b18baca44
3 changed files with 11 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ namespace NzbDrone.Core.Messaging.Commands
public CommandStatus State { get; private set; }
public DateTime StateChangeTime { get; private set; }
public virtual bool SendUpdatesToClient
public virtual Boolean SendUpdatesToClient
{
get
{
@@ -31,10 +31,11 @@ namespace NzbDrone.Core.Messaging.Commands
}
}
public Boolean Manual { get; set; }
public Exception Exception { get; private set; }
public string Message { get; private set; }
public String Message { get; private set; }
public string Name { get; private set; }
public String Name { get; private set; }
public DateTime? LastExecutionTime { get; set; }
protected Command()
@@ -43,6 +44,7 @@ namespace NzbDrone.Core.Messaging.Commands
StateChangeTime = DateTime.UtcNow;
State = CommandStatus.Pending;
_stopWatch = new StopWatch();
Manual = false;
lock (Mutex)
{