Skip to content

Commit

Permalink
Use absolute icon url (fix #280)
Browse files Browse the repository at this point in the history
  • Loading branch information
R0Wi committed Dec 1, 2024
1 parent bfb792f commit 1be6067
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Notification/Notifier.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ public function prepare(INotification $notification, string $languageCode): INot
$message = $notification->getSubjectParameters()['message'];
$notification
->setParsedMessage($message)
->setIcon($this->urlGenerator->imagePath(Application::APP_NAME, 'app-dark.svg'));
->setIcon($this->urlGenerator->getAbsoluteURL($this->urlGenerator->imagePath(Application::APP_NAME, 'app-dark.svg')));

return $notification;
}
Expand Down

0 comments on commit 1be6067

Please sign in to comment.