diff options
author | Julius Härtl <jus@bitgrid.net> | 2018-01-03 17:21:41 +0100 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2018-01-03 17:21:41 +0100 |
commit | bdea20330dc9628a256d719236cac7949ae87e33 (patch) | |
tree | 97530fff729adf227f78d11b15c892c147b22833 /apps/updatenotification | |
parent | ee0653d68b117ac586841465840e629a7c1a487f (diff) | |
download | nextcloud-server-bdea20330dc9628a256d719236cac7949ae87e33.tar.gz nextcloud-server-bdea20330dc9628a256d719236cac7949ae87e33.zip |
Make update notification open the new update view from apps management
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'apps/updatenotification')
-rw-r--r-- | apps/updatenotification/lib/Notification/Notifier.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/updatenotification/lib/Notification/Notifier.php b/apps/updatenotification/lib/Notification/Notifier.php index cb7b89e01f5..d18a2663702 100644 --- a/apps/updatenotification/lib/Notification/Notifier.php +++ b/apps/updatenotification/lib/Notification/Notifier.php @@ -126,7 +126,7 @@ class Notifier implements INotifier { ]); if ($this->isAdmin()) { - $notification->setLink($this->url->linkToRouteAbsolute('settings.AppSettings.viewApps') . '#app-' . $notification->getObjectType()); + $notification->setLink($this->url->linkToRouteAbsolute('settings.AppSettings.viewApps', ['category' => 'updates']) . '#app-' . $notification->getObjectType()); } } |