diff options
author | Morris Jobke <hey@morrisjobke.de> | 2019-07-17 20:22:03 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-07-17 20:22:03 +0200 |
commit | 5b604eaeaba7d5ee5dd12a92f37c9e8e7519c9c2 (patch) | |
tree | a507ff70a162b7c779a62faa1f341ec025539b9f /lib/private/Server.php | |
parent | 782554d2acdfd48b322753500906e8b291035250 (diff) | |
parent | 594efca1e3b936d0d86f2d80ebf366980a425713 (diff) | |
download | nextcloud-server-5b604eaeaba7d5ee5dd12a92f37c9e8e7519c9c2.tar.gz nextcloud-server-5b604eaeaba7d5ee5dd12a92f37c9e8e7519c9c2.zip |
Merge pull request #15040 from nextcloud/feature/13980/push-for-deleted-notifications
Notifications overhaul
Diffstat (limited to 'lib/private/Server.php')
-rw-r--r-- | lib/private/Server.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/Server.php b/lib/private/Server.php index ccdb31c3e82..64180f1cd7c 100644 --- a/lib/private/Server.php +++ b/lib/private/Server.php @@ -900,7 +900,8 @@ class Server extends ServerContainer implements IServerContainer { }); $this->registerService(\OCP\Notification\IManager::class, function (Server $c) { return new Manager( - $c->query(IValidator::class) + $c->query(IValidator::class), + $c->getLogger() ); }); $this->registerAlias('NotificationManager', \OCP\Notification\IManager::class); |