diff options
author | MaZderMind | 2015-04-09 14:51:15 +0200 |
---|---|---|
committer | MaZderMind | 2015-04-09 14:51:15 +0200 |
commit | 363b705ae17633c6071150349b3656141aa8b412 (patch) | |
tree | 5c5a9a51cd128419fe0133a7ce9a7702daae1c64 /view | |
parent | 5aa28c0821fba691160ca173c24b5f7799d76ad8 (diff) |
Empty-Response should be Array, not Object
Diffstat (limited to 'view')
-rw-r--r-- | view/streams-json-v1.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/streams-json-v1.php b/view/streams-json-v1.php index 0f73be9..90c1cb0 100644 --- a/view/streams-json-v1.php +++ b/view/streams-json-v1.php @@ -4,7 +4,7 @@ header('Content-Type: application/json'); if($conference->isClosed()) { - echo '{}'; + echo '[]'; return; } |