Merge pull request #43691 from nextcloud/bugfix/noid/help-finding-missing-notifications

fix(notifications): Help finding missing notifications by logging it
pull/43712/head
Joas Schilling 2 years ago committed by GitHub
commit 07dbd3c28c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      lib/private/Notification/Manager.php

@ -366,6 +366,7 @@ class Manager implements IManager {
}
if (!$notification->isValidParsed()) {
$this->logger->info('Notification was not parsed by any notifier [app: ' . $notification->getApp() . ', subject: ' . $notification->getSubject() . ']');
throw new \InvalidArgumentException('The given notification has not been handled');
}

Loading…
Cancel
Save