diff options
author | Ruben Rodriguez <ruben@gnu.org> | 2016-02-04 17:35:11 -0600 |
---|---|---|
committer | Ruben Rodriguez <ruben@gnu.org> | 2016-02-04 17:35:11 -0600 |
commit | 23c04f7d9249b29c84df3707429053fc53fb190d (patch) | |
tree | e5706a72d65a344d5c2be0866974c594eddca292 /data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js | |
parent | 501a13debeebf3244f33646ac3bad75f9a0e614d (diff) |
HTTPS-Everywhere updated to 5.1.3
Diffstat (limited to 'data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js')
-rw-r--r-- | data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js index f3a5bee..325407c 100644 --- a/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js +++ b/data/extensions/https-everywhere-eff@eff.org/chrome/content/code/IOUtil.js @@ -14,7 +14,7 @@ const IO = { res = sis.read(sis.available()); is.close(); - if (charset !== null) { // use "null" if you want uncoverted data... + if (charset !== null) { // use "null" if you want unconverted data... const unicodeConverter = Cc["@mozilla.org/intl/scriptableunicodeconverter"] .createInstance(Ci.nsIScriptableUnicodeConverter); try { @@ -235,7 +235,9 @@ const IOUtil = { return parts.join("?"); }, - _splitName: function(nv) nv.split("=")[0], + _splitName: function(nv) { + return nv.split("=")[0]; + }, _qsRx: /[&=]/, _anonRx: /(?:auth|s\w+(?:id|key)$)/, anonymizeQS: function(qs, cookie) { |