From ddc2e0f4cb0046eac46a8ca7ddf53c39e386c3e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 26 Jan 2021 17:12:04 +0100 Subject: [PATCH] extensionSystem: Fix opening Extensions app from notification Launching the app is implemented by the source's open() method, but only external notifications are hooked up to call into the source when no default action was provided. Part-of: --- js/ui/extensionSystem.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/extensionSystem.js b/js/ui/extensionSystem.js index 41ef98d70..6b624fca0 100644 --- a/js/ui/extensionSystem.js +++ b/js/ui/extensionSystem.js @@ -252,6 +252,8 @@ var ExtensionManager = class { let notification = new MessageTray.Notification(source, _('Extension Updates Available'), _('Extension updates are ready to be installed.')); + notification.connect('activated', + () => source.open()); source.showNotification(notification); } }