1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-14 23:12:28 +02:00

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
This commit is contained in:
Raymond Hill 2020-03-23 12:23:05 -04:00
parent b34ea197ed
commit 0c30bee3e3
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -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 });
}
}