[tor-commits] [meek/master] Add a missing variable declaration.
dcf at torproject.org
dcf at torproject.org
Sat Mar 21 21:42:36 UTC 2015
commit c4a613016ae445d23d334cf0e36f2c566281e0ef
Author: David Fifield <david at bamsoftware.com>
Date: Sat Mar 21 14:41:00 2015 -0700
Add a missing variable declaration.
---
firefox/components/main.js | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/firefox/components/main.js b/firefox/components/main.js
index 188429d..fb7a788 100644
--- a/firefox/components/main.js
+++ b/firefox/components/main.js
@@ -386,7 +386,7 @@ MeekHTTPHelper.RequestReader.prototype = {
.createInstance(Components.interfaces.nsIScriptableUnicodeConverter);
converter.charset = "UTF-8";
let s = converter.convertFromByteArray(this.buf, this.buf.length);
- req = JSON.parse(s);
+ let req = JSON.parse(s);
this.state = this.STATE_DONE;
this.buf = null;
More information about the tor-commits
mailing list