From 94a9101d338b42699e0eb277d0f58b3eaa735199 Mon Sep 17 00:00:00 2001 From: brl Date: Tue, 15 Dec 2015 03:44:12 +0000 Subject: [PATCH] use sysetm bus --- gnome-shell/firewall@subgraph.com/extension.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gnome-shell/firewall@subgraph.com/extension.js b/gnome-shell/firewall@subgraph.com/extension.js index f1222fc..fbde8d9 100644 --- a/gnome-shell/firewall@subgraph.com/extension.js +++ b/gnome-shell/firewall@subgraph.com/extension.js @@ -56,8 +56,8 @@ const FirewallPromptHandler = new Lang.Class({ _init: function() { this._dbusImpl = Gio.DBusExportedObject.wrapJSObject(FirewallPromptInterface, this); - this._dbusImpl.export(Gio.DBus.session, '/com/subgraph/FirewallPrompt'); - Gio.bus_own_name_on_connection(Gio.DBus.session, 'com.subgraph.FirewallPrompt', Gio.BusNameOwnerFlags.REPLACE, null, null); + this._dbusImpl.export(Gio.DBus.system, '/com/subgraph/FirewallPrompt'); + Gio.bus_own_name_on_connection(Gio.DBus.system, 'com.subgraph.FirewallPrompt', Gio.BusNameOwnerFlags.REPLACE, null, null); this._dialog = null; },