From 1a0545632abb5327722e234a990b874d109f8165 Mon Sep 17 00:00:00 2001 From: Julius Knorr Date: Mon, 16 Sep 2024 15:38:54 +0200 Subject: [PATCH] fix: Use proper server url parameter from the frontend Signed-off-by: Julius Knorr --- lib/Controller/SettingsController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Controller/SettingsController.php b/lib/Controller/SettingsController.php index 7289aad..da3afcd 100644 --- a/lib/Controller/SettingsController.php +++ b/lib/Controller/SettingsController.php @@ -33,7 +33,7 @@ public function __construct( public function update(): DataResponse { try { - $serverUrl = $this->request->getParam('server_url'); + $serverUrl = $this->request->getParam('serverUrl'); $secret = $this->request->getParam('secret'); if ($serverUrl !== null) {