Skip to content

Commit

Permalink
Fixed a serious syntax bug
Browse files Browse the repository at this point in the history
This was causing all the options from those lines onwards to not have
any effect :(
  • Loading branch information
pyllyukko committed Jul 4, 2015
1 parent 6d72adb commit b213091
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user.js
Original file line number Diff line number Diff line change
Expand Up @@ -266,10 +266,10 @@ user_pref("media.gmp-manager.url", "");
user_pref("network.http.speculative-parallel-limit", 0);

// https://support.mozilla.org/en-US/kb/how-stop-firefox-making-automatic-connections#w_mozilla-content
user_pref("browser.aboutHomeSnippets.updateUrl" "");
user_pref("browser.aboutHomeSnippets.updateUrl", "");

// https://support.mozilla.org/en-US/kb/how-stop-firefox-making-automatic-connections#w_auto-update-checking
user_pref("browser.search.update" false);
user_pref("browser.search.update", false);

/******************************************************************************
* HTTP *
Expand Down

0 comments on commit b213091

Please sign in to comment.