From 607b2efcce68002b44c2e7e0045e69f9e39062ac Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Sun, 19 Feb 2017 16:38:07 +0100 Subject: [PATCH] network: Don't start portal helper under GDM https://bugzilla.gnome.org/show_bug.cgi?id=769546 --- js/ui/status/network.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/network.js b/js/ui/status/network.js index 560743cf0..bedfc5e38 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -2066,7 +2066,7 @@ const NMApplet = new Lang.Class({ // (but in general we should only prompt a portal if we know there is a portal) if (GLib.getenv('GNOME_SHELL_CONNECTIVITY_TEST') != null) isPortal = isPortal || this._client.connectivity < NetworkManager.ConnectivityState.FULL; - if (!isPortal) + if (!isPortal || Main.sessionMode.isGreeter) return; let path = this._mainConnection.get_path();