[tor-commits] [meek/webextension] Fix proxy setting.

dcf at torproject.org dcf at torproject.org
Mon Aug 26 01:34:35 UTC 2019


commit bf7192d56dc95f874b0464093c787c51d4df58e8
Author: David Fifield <david at bamsoftware.com>
Date:   Sun Aug 25 19:33:24 2019 -0600

    Fix proxy setting.
    
    Was broken after the refactoring in
    4fb5ca496d2fb6b3f96114be3a85c9fcde7f0d3d.
---
 webextension/browser/background.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/webextension/browser/background.js b/webextension/browser/background.js
index 487ea4e..5a23134 100644
--- a/webextension/browser/background.js
+++ b/webextension/browser/background.js
@@ -215,7 +215,7 @@ async function roundtrip(params) {
             }
             proxyCalled = true;
 
-            return makeProxyInfo(request.proxy);
+            return makeProxyInfo(params.proxy);
         } finally {
             browser.proxy.onRequest.removeListener(proxyFn);
             proxyUnlock();



More information about the tor-commits mailing list