Fixed: Refresh Indicator always spinning after refresh

This commit is contained in:
Qstick
2019-06-29 22:26:02 -04:00
parent 7760248e6b
commit 286f73f38d
4 changed files with 69 additions and 48 deletions

View File

@@ -64,12 +64,12 @@ namespace NzbDrone.Core.Messaging.Commands
public List<CommandModel> Queued()
{
return Query.Where(c => c.Status == CommandStatus.Queued).ToList();
return Query.Where(c => c.Status == CommandStatus.Queued);
}
public List<CommandModel> Started()
{
return Query.Where(c => c.Status == CommandStatus.Started).ToList();
return Query.Where(c => c.Status == CommandStatus.Started);
}
public void Start(CommandModel command)