mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-10-03 09:09:42 +02: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