fix(legacy): on air light fails when no shows are scheduled

This commit is contained in:
jo 2023-02-26 16:28:26 +01:00 committed by Jonas L
parent 861698987c
commit 5fbd4f54a2
1 changed files with 6 additions and 3 deletions

View File

@ -207,9 +207,12 @@ class ApiController extends Zend_Controller_Action
$range = Application_Model_Schedule::GetPlayOrderRange();
$isItemCurrentlyScheduled = !is_null($range['tracks']['current']) && count($range['tracks']['current']) > 0 ? true : false;
$isItemCurrentlyScheduled = false;
$isCurrentItemPlaying = false;
if (!is_null($range['tracks']['current']) && count($range['tracks']['current']) > 0) {
$isItemCurrentlyScheduled = true;
$isCurrentItemPlaying = $range['tracks']['current']['media_item_played'] ? true : false;
}
if (
$isItemCurrentlyScheduled