Skip to content

Commit

Permalink
Merge pull request #167 from nextcloud/fix/serverUrl-settings
Browse files Browse the repository at this point in the history
fix: Use proper server url parameter from the frontend
  • Loading branch information
elzody authored Sep 18, 2024
2 parents 9fa7241 + 1a05456 commit 10bf667
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 10bf667

Please sign in to comment.