Merge pull request #246 from nextcloud/bugfix/noid/notification-handling

fix(notifications): Notifier::prepare() threw \InvalidArgumentExcepti…
This commit is contained in:
Arthur Schiwon 2025-01-08 20:27:32 +01:00 коммит произвёл GitHub
Родитель 43b474dedb 858de95ca4
Коммит 54ec7e91b1
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -8,12 +8,12 @@ declare(strict_types=1);
namespace OCA\FlowNotifications\Notification;
use InvalidArgumentException;
use OCA\FlowNotifications\AppInfo\Application;
use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\Notification\INotification;
use OCP\Notification\INotifier;
use OCP\Notification\UnknownNotificationException;
use OCP\WorkflowEngine\EntityContext\IContextPortation;
use OCP\WorkflowEngine\EntityContext\IDisplayText;
use OCP\WorkflowEngine\EntityContext\IIcon;
@ -49,7 +49,7 @@ class Notifier implements INotifier {
*/
public function prepare(INotification $notification, string $languageCode): INotification {
if ($notification->getApp() !== Application::APP_ID) {
throw new InvalidArgumentException();
throw new UnknownNotificationException();
}
/** @var IEntity $entity */