Skip to content

Commit

Permalink
Merge pull request #40075 from nextcloud/bugfix/noid/fix-parameter-na…
Browse files Browse the repository at this point in the history
…me-change

fix(API): Fix parameter name to match interface
  • Loading branch information
nickvergessen authored Sep 2, 2023
2 parents db5dbd1 + 2abb503 commit 391bbbc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/private/NavigationManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,8 +171,8 @@ public function clear($loadDefaultLinks = true) {
/**
* @inheritDoc
*/
public function setActiveEntry($id) {
$this->activeEntry = $id;
public function setActiveEntry($appId) {
$this->activeEntry = $appId;
}

/**
Expand Down

0 comments on commit 391bbbc

Please sign in to comment.