Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d238baa commit 6a042f1Copy full SHA for 6a042f1
platform/firefox/vapi-background-ext.js
@@ -94,6 +94,10 @@ vAPI.Net = class extends vAPI.Net {
94
}
95
96
normalizeDetails(details) {
97
+ // https://github.com/uBlockOrigin/uBlock-issues/issues/3379
98
+ if ( details.proxyInfo?.proxyDNS && details.ip === '0.0.0.0' ) {
99
+ details.ip = null;
100
+ }
101
const type = details.type;
102
if ( type === 'imageset' ) {
103
details.type = 'image';
0 commit comments