We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 737c9de commit 53e69a1Copy full SHA for 53e69a1
src/components/https-everywhere.js
@@ -508,7 +508,9 @@ HTTPSEverywhere.prototype = {
508
if (result) that.log(INFO, "Got positive proxy test.");
509
else that.log(INFO, "Got negative proxy text.");
510
// We are now ready to show the popup in its most informative state
511
- that.chrome_opener("chrome://https-everywhere/content/observatory-popup.xul");
+ // (actually for temporary scalability reasons let's only show it if
512
+ // the user has Tor available too...)
513
+ if (result) that.chrome_opener("chrome://https-everywhere/content/observatory-popup.xul");
514
};
515
if (!shown && !enabled)
516
ssl_observatory.registerProxyTestNotification(obs_popup_callback);
0 commit comments