[meek/master] Fix the debug message for an unsupported URL scheme.

commit 9249654c39cb04f1528ff34d1f21c17b935a6b48 Author: David Fifield <david@bamsoftware.com> Date: Wed Sep 24 22:25:48 2014 -0700 Fix the debug message for an unsupported URL scheme. To go with 7b1b77baa8502fca3f0231a8c8a08aea408c2f21. --- 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 c9f1058..f4af054 100644 --- a/firefox/components/main.js +++ b/firefox/components/main.js @@ -274,7 +274,7 @@ MeekHTTPHelper.LocalConnectionHandler.prototype = { return false; } if (!(req.url.startsWith("http://") || req.url.startsWith("https://"))) { - dump("req.url doesn't start with \"https://\".\n"); + dump("req.url doesn't start with \"http://\" or \"https://\".\n"); return false; }
participants (1)
-
dcf@torproject.org