summaryrefslogtreecommitdiffstats
path: root/lib/Notification/Notifier.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Notification/Notifier.php')
-rw-r--r--lib/Notification/Notifier.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php
index fd1fc17c..b3096b98 100644
--- a/lib/Notification/Notifier.php
+++ b/lib/Notification/Notifier.php
@@ -76,7 +76,7 @@ class Notifier implements INotifier {
* @since 17.0.0
*/
public function getID(): string {
- return Application::APP_NAME;
+ return Application::APP_ID;
}
/**
@@ -97,11 +97,11 @@ class Notifier implements INotifier {
* @throws InvalidArgumentException
*/
public function prepare(INotification $notification, string $languageCode): INotification {
- if ($notification->getApp() !== Application::APP_NAME) {
+ if ($notification->getApp() !== Application::APP_ID) {
throw new InvalidArgumentException();
}
- $l10n = $this->factory->get(Application::APP_NAME, $languageCode);
+ $l10n = $this->factory->get(Application::APP_ID, $languageCode);
$notification->setIcon(
$this->url->getAbsoluteURL($this->url->imagePath('social', 'social_dark.svg'))