Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/spreed.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2020-11-04 16:04:23 +0300
committerJoas Schilling <coding@schilljs.com>2020-11-26 11:46:45 +0300
commit8687b5c373d4d655606704d4dfec64808676f256 (patch)
treeaa552fc9302e045c92ab3bb437b8f40ac6c0710a /lib/Controller
parentf9813a584d2110d160db6310c96129a13dba8ca4 (diff)
All parameters are lowercase
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller')
-rw-r--r--lib/Controller/SignalingController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/SignalingController.php b/lib/Controller/SignalingController.php
index 3b87a4201..917809a9b 100644
--- a/lib/Controller/SignalingController.php
+++ b/lib/Controller/SignalingController.php
@@ -527,7 +527,7 @@ class SignalingController extends OCSController {
$action = !empty($roomRequest['action']) ? $roomRequest['action'] : 'join';
$actorId = $roomRequest['actorid'] ?? null;
$actorType = $roomRequest['actortype'] ?? null;
- $inCall = $roomRequest['inCall'] ?? null;
+ $inCall = $roomRequest['incall'] ?? null;
$participant = null;
if ($actorId !== null && $actorType !== null) {