mirror of
https://github.com/nextcloud/server.git
synced 2026-03-07 07:50:57 -05:00
Fix return code of AppConfig::deleteUserValue
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
parent
8614abaa5b
commit
e0d2cd40e7
1 changed files with 1 additions and 1 deletions
|
|
@ -70,6 +70,6 @@ class AppConfig implements IAppConfig {
|
|||
}
|
||||
|
||||
public function deleteUserValue(string $userId, string $key): void {
|
||||
return $this->config->deleteUserValue($userId, $this->appName, $key);
|
||||
$this->config->deleteUserValue($userId, $this->appName, $key);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue