Fix return code of AppConfig::deleteUserValue

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
pull/20952/head
Morris Jobke 6 years ago
parent 8614abaa5b
commit e0d2cd40e7
No known key found for this signature in database
GPG Key ID: FE03C3A163FEDE68
  1. 2
      lib/private/AppFramework/Services/AppConfig.php

@ -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…
Cancel
Save