Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/private/AppFramework/Services/AppConfig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/private/AppFramework/Services/AppConfig.php b/lib/private/AppFramework/Services/AppConfig.php
index 4716313b342..eaca647f438 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);
}
}