From a80e0bba5ca7c20b2acd19879ec89a137d05e1b3 Mon Sep 17 00:00:00 2001 From: Julian Sparber Date: Tue, 20 Feb 2024 11:55:06 +0100 Subject: [PATCH] components/networkAgent: Fix small mistake Fixes: c1ff00c01 ("notification: Use the same Source for showing system notifications") Part-of: --- js/ui/components/networkAgent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/components/networkAgent.js b/js/ui/components/networkAgent.js index ab9b86083..a5d603564 100644 --- a/js/ui/components/networkAgent.js +++ b/js/ui/components/networkAgent.js @@ -781,7 +781,7 @@ class NetworkAgent { return; } - const source = new MessageTray.getSystemSource(); + const source = MessageTray.getSystemSource(); const notification = new MessageTray.Notification(source, title, body); notification.iconName = 'dialog-password-symbolic';