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

github.com/nextcloud/ransomware_protection.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoas Schilling <coding@schilljs.com>2021-03-05 00:35:55 +0300
committerJoas Schilling <coding@schilljs.com>2021-03-05 00:35:55 +0300
commit6dbfbb6b4d1611b887c53ac7e946e64f40265566 (patch)
tree0fb503cce0ebe456df0cbf5822f76ae8726b1191
parent1f630a12a4b15a5fd9c29d81b3c36367871f6d48 (diff)
Don't register non-existing personal settings
Signed-off-by: Joas Schilling <coding@schilljs.com>
-rw-r--r--lib/AppInfo/Application.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/AppInfo/Application.php b/lib/AppInfo/Application.php
index 9aca83b..053a603 100644
--- a/lib/AppInfo/Application.php
+++ b/lib/AppInfo/Application.php
@@ -48,7 +48,6 @@ class Application extends App implements IBootstrap {
public function boot(IBootContext $context): void {
Util::connectHook('OC_Filesystem', 'preSetup', $this, 'addStorageWrapper');
- \OCP\App::registerPersonal('ransomware_protection', 'personal');
$context->injectFn(\Closure::fromCallable([$this, 'registerNotificationNotifier']));
}