From f13c9873111725355b417c5c34a30d8b5e2142a1 Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Mon, 24 Aug 2026 21:04:56 +0200 Subject: [PATCH] fix: use proper AppStore route In Nextcloud 34 the appstore was split from settings into its own app, so we need to adjust the route for it. Signed-off-by: Ferdinand Thiessen --- lib/Notification/Notifier.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Notification/Notifier.php b/lib/Notification/Notifier.php index d5e178a8e..9e22a40d3 100644 --- a/lib/Notification/Notifier.php +++ b/lib/Notification/Notifier.php @@ -159,7 +159,7 @@ protected function setAppHintDetails(INotification $notification, string $langua break; } $notification - ->setLink($this->url->linkToRouteAbsolute('settings.AppSettings.viewApps') . $appLink) + ->setLink($this->url->linkToRouteAbsolute('appstore.Page.viewApps') . $appLink) ->setIcon($this->url->getAbsoluteURL($this->url->imagePath('firstrunwizard', 'apps/' . $app . '.svg'))); return $notification; }