Skip to content

Commit

Permalink
fix: Use proper server url parameter from the frontend
Browse files Browse the repository at this point in the history
Signed-off-by: Julius Knorr <[email protected]>
  • Loading branch information
juliusknorr committed Sep 16, 2024
1 parent fd23e8e commit 1a05456
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Controller/SettingsController.php
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 1a05456

Please sign in to comment.