mirror of
https://github.com/Radarr/Radarr
synced 2026-01-14 11:33:17 +01:00
9 lines
188 B
JavaScript
9 lines
188 B
JavaScript
function isCommandExecuting(command) {
|
|
if (!command) {
|
|
return false;
|
|
}
|
|
|
|
return command.status === 'queued' || command.status === 'started';
|
|
}
|
|
|
|
export default isCommandExecuting;
|