mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-16 21:15:33 -04:00
Fixed: Refresh Indicator always spinning after refresh
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user