Merge pull request #5136 from MetaMask/remove-test-ens

Disable .test ENS resolution
feature/default_network_editable
Dan Finlay 6 years ago committed by GitHub
commit 30e49b8545
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      app/manifest.json
  2. 2
      app/scripts/lib/ipfsContent.js

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

@ -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 () {

Loading…
Cancel
Save