diff options
Diffstat (limited to 'core')
-rw-r--r-- | core/Application.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Application.php b/core/Application.php index cfbb8f4018a..808b8a266d9 100644 --- a/core/Application.php +++ b/core/Application.php @@ -25,6 +25,7 @@ use OCP\AppFramework\Http\Events\BeforeTemplateRenderedEvent; use OCP\DB\Events\AddMissingIndicesEvent; use OCP\DB\Events\AddMissingPrimaryKeyEvent; use OCP\EventDispatcher\IEventDispatcher; +use OCP\Notification\IManager as INotificationManager; use OCP\User\Events\BeforeUserDeletedEvent; use OCP\User\Events\UserDeletedEvent; use OCP\Util; @@ -48,7 +49,7 @@ class Application extends App { /** @var IEventDispatcher $eventDispatcher */ $eventDispatcher = $server->get(IEventDispatcher::class); - $notificationManager = $server->getNotificationManager(); + $notificationManager = $server->get(INotificationManager::class); $notificationManager->registerNotifierService(CoreNotifier::class); $notificationManager->registerNotifierService(AuthenticationNotifier::class); |