summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Controller/RoomController.php6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Controller/RoomController.php b/lib/Controller/RoomController.php
index ccf2bcc5a..6fe5b9f56 100644
--- a/lib/Controller/RoomController.php
+++ b/lib/Controller/RoomController.php
@@ -127,6 +127,12 @@ class RoomController extends AEnvironmentAwareController {
'X-Nextcloud-Talk-Hash' => sha1(
$this->config->getSystemValueString('version') . '#' .
$this->config->getAppValue('spreed', 'installed_version', '') . '#' .
+ $this->config->getAppValue('spreed', 'stun_servers', '') . '#' .
+ $this->config->getAppValue('spreed', 'turn_servers', '') . '#' .
+ $this->config->getAppValue('spreed', 'signaling_servers', '') . '#' .
+ $this->config->getAppValue('spreed', 'signaling_mode', '') . '#' .
+ $this->config->getAppValue('spreed', 'allowed_groups', '') . '#' .
+ $this->config->getAppValue('spreed', 'start_conversations', '') . '#' .
$this->config->getAppValue('theming', 'cachebuster', '1')
)];
}