Fixed display issue related to how many requests are sent.

This commit is contained in:
Abdulmhsen B. A. A
2022-06-13 19:18:05 +03:00
parent 7b7921ee2f
commit d0a674b5dc

View File

@@ -278,9 +278,9 @@ class ExportCommand extends Command
$this->export($export, $input);
}
$total = $this->queue->getQueue();
$total = count($this->queue->getQueue());
if (count($total) >= 1) {
if ($total >= 1) {
$this->logger->notice('SYSTEM: Sending [%(total)] change play state requests.', [
'total' => $total
]);