diff options
author | Andreas Hubel | 2021-05-13 12:54:28 +0200 |
---|---|---|
committer | Lukas Schauer | 2021-06-03 20:06:55 +0200 |
commit | 06ef361e74eb043cf2d179ffb16a02f04f58f20d (patch) | |
tree | 663e6461054f784fe3697d29f7822116a1c44407 /view | |
parent | 953f783004ca9240a16c7d0c6b7ab4d162e2ab68 (diff) |
config json (#147)
* add first draft for new config json
* misc optimizations
Diffstat (limited to 'view')
-rw-r--r-- | view/config-json.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/config-json.php b/view/config-json.php index e6d26e4..5973cef 100644 --- a/view/config-json.php +++ b/view/config-json.php @@ -46,7 +46,7 @@ function formatRooms($conference) { $struct[] = array( 'name' => $room->getDisplay(), 'slug' => $room->getSlug(), - 'livestreamId' => $room->getStream(), + 'streamId' => $room->getStream(), 'streamingConfig' => lowerCaseKeys($config), ); } |