Merge pull request #40075 from nextcloud/bugfix/noid/fix-parameter-name-change

fix(API): Fix parameter name to match interface
This commit is contained in:
Joas Schilling 2023-09-02 17:38:17 +02:00 committed by GitHub
commit 391bbbc14d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -171,8 +171,8 @@ class NavigationManager implements INavigationManager {
/**
* @inheritDoc
*/
public function setActiveEntry($id) {
$this->activeEntry = $id;
public function setActiveEntry($appId) {
$this->activeEntry = $appId;
}
/**