summaryrefslogtreecommitdiffstats
path: root/lib/Controller/PageController.php
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2023-02-17 07:00:27 +0100
committerJoas Schilling <coding@schilljs.com>2023-02-17 07:00:27 +0100
commit29f5736baa3c3f0d10b2251af4aa65131121017f (patch)
treec085ae624c07e1dec23db5f7e56bfb1385b8961e /lib/Controller/PageController.php
parentde75def58cd6faafbdb598dbef6fb12429b8eceb (diff)
fix: Conversation token is not optional in this route
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'lib/Controller/PageController.php')
-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 5e60d88dc..56f93f687 100644
--- a/lib/Controller/PageController.php
+++ b/lib/Controller/PageController.php
@@ -311,7 +311,7 @@ class PageController extends Controller {
* @param string $token
* @return TemplateResponse|NotFoundResponse
*/
- public function recording(string $token = ''): Response {
+ public function recording(string $token): Response {
try {
$room = $this->manager->getRoomByToken($token);
} catch (RoomNotFoundException $e) {