From 0c30bee3e3ab07e80d331fdea60ab2d337551e58 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Mon, 23 Mar 2020 12:23:05 -0400 Subject: [PATCH] Fix typo in proxy-detecting code Related issue: - https://github.com/uBlockOrigin/uBlock-issues/issues/911 Related commit: - https://github.com/gorhill/uBlock/commit/3f7ece94691f --- src/js/traffic.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/traffic.js b/src/js/traffic.js index 17288855e..ae2f0fb9a 100644 --- a/src/js/traffic.js +++ b/src/js/traffic.js @@ -448,7 +448,7 @@ const onHeadersReceived = function(details) { if ( isRootDoc && µb.proxyDNS === undefined ) { µb.proxyDNS = details.proxyInfo instanceof Object; if ( µb.proxyDNS ) { - vAPI.Net.setOptions({ cnameUncloak: false }); + vAPI.net.setOptions({ cnameUncloak: false }); } }