1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Do not resolve .test domains using ENS

This commit is contained in:
bitpshr 2018-08-24 12:40:37 -04:00
parent dae07b32e5
commit 803a79f836
2 changed files with 1 additions and 2 deletions

View File

@ -63,7 +63,6 @@
"activeTab", "activeTab",
"webRequest", "webRequest",
"*://*.eth/", "*://*.eth/",
"*://*.test/",
"notifications" "notifications"
], ],
"web_accessible_resources": [ "web_accessible_resources": [

View File

@ -34,7 +34,7 @@ module.exports = function (provider) {
return { cancel: true } return { cancel: true }
} }
extension.webRequest.onErrorOccurred.addListener(ipfsContent, {urls: ['*://*.eth/', '*://*.test/']}) extension.webRequest.onErrorOccurred.addListener(ipfsContent, {urls: ['*://*.eth/']})
return { return {
remove () { remove () {