diff --git a/lib/private/AppFramework/Services/AppConfig.php b/lib/private/AppFramework/Services/AppConfig.php index 4716313b34..eaca647f43 100644 --- a/lib/private/AppFramework/Services/AppConfig.php +++ b/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); } }