From 7f1303b8476e4257689c88fc22d2347e6f0e7ab3 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Wed, 24 Jun 2026 19:31:44 +0200 Subject: [PATCH] fix(updatenotification): use correct appstore route Signed-off-by: Ferdinand Thiessen --- apps/updatenotification/lib/Notification/Notifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/updatenotification/lib/Notification/Notifier.php b/apps/updatenotification/lib/Notification/Notifier.php index ef24823eefb04..fc5f2ca697227 100644 --- a/apps/updatenotification/lib/Notification/Notifier.php +++ b/apps/updatenotification/lib/Notification/Notifier.php @@ -126,7 +126,7 @@ public function prepare(INotification $notification, string $languageCode): INot ]); if ($this->isAdmin()) { - $notification->setLink($this->url->linkToRouteAbsolute('settings.AppSettings.viewApps', ['category' => 'updates']) . '#app-' . $notification->getObjectType()); + $notification->setLink($this->url->linkToRouteAbsolute('appstore.Page.viewApps', ['category' => 'updates', 'id' => $notification->getObjectType()])); } } }