mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-24 22:35:39 -04:00
10 lines
186 B
JavaScript
10 lines
186 B
JavaScript
function isCommandExecuting(command) {
|
|
if (!command) {
|
|
return false;
|
|
}
|
|
|
|
return command.state === 'queued' || command.state === 'started';
|
|
}
|
|
|
|
export default isCommandExecuting;
|