1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-22 18:00:18 +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",
"webRequest",
"*://*.eth/",
"*://*.test/",
"notifications"
],
"web_accessible_resources": [

View File

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