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
path: root/lib
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2019-11-13 14:34:14 +0300
committerJoas Schilling <coding@schilljs.com>2019-11-13 14:34:14 +0300
commita649f269daae784a3a69aa5c353551baad528dc6 (patch)
tree284ada54dba78794f4e79e141dc8f8cea095ed7b /lib
parent20c3e907127df8460ef9646655faeb86d738bf0f (diff)
Use the same template for both cases
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Controller/PageController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/PageController.php b/lib/Controller/PageController.php
index 7689b49fb..1d3e553b7 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -248,7 +248,7 @@ class PageController extends Controller {
'token' => $token,
'signaling-settings' => $this->config->getSettings($this->userId),
];
- $response = new PublicTemplateResponse($this->appName, 'index-public', $params);
+ $response = new PublicTemplateResponse($this->appName, 'index', $params);
$response->setFooterVisible(false);
$csp = new ContentSecurityPolicy();
$csp->addAllowedConnectDomain('*');