diff options
Diffstat (limited to 'view/streams-json-v1.php')
-rw-r--r-- | view/streams-json-v1.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/view/streams-json-v1.php b/view/streams-json-v1.php index 8cdac19..19f7b0d 100644 --- a/view/streams-json-v1.php +++ b/view/streams-json-v1.php @@ -78,7 +78,7 @@ foreach (Conferences::getActiveConferences() as $conference) 'type' => $stream->getPlayerType(), 'isTranslated' => $stream->isTranslated(), 'videoSize' => $stream->getVideoSize(), - 'urls' => $urls, + 'urls' => (object)$urls, ); } @@ -100,4 +100,4 @@ foreach (Conferences::getActiveConferences() as $conference) } } -echo json_encode($struct, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_FORCE_OBJECT); +echo json_encode($struct, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE); |