From a65c268dbf203c4fa999c3de670c3e7cb8583db7 Mon Sep 17 00:00:00 2001 From: dma Date: Sun, 10 Sep 2017 00:38:10 +0000 Subject: [PATCH] Change default for non-sandboxed connections. --- gnome-shell/firewall@subgraph.com/dialog.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/gnome-shell/firewall@subgraph.com/dialog.js b/gnome-shell/firewall@subgraph.com/dialog.js index f1fe7dd..f4d3b58 100644 --- a/gnome-shell/firewall@subgraph.com/dialog.js +++ b/gnome-shell/firewall@subgraph.com/dialog.js @@ -149,7 +149,10 @@ const OptionList = new Lang.Class({ this.actor.add_child(this.buttonGroup.actor); this.items = []; this._selected; - this.tlsGuard = true; + this.tlsGuard = false; + if (sandboxed) { + this.tlsGuard = true; + } }, setOptionText: function(idx, text) {