aboutsummaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorDan Finlay <542863+danfinlay@users.noreply.github.com>2018-08-25 04:20:49 +0800
committerGitHub <noreply@github.com>2018-08-25 04:20:49 +0800
commit30e49b8545a33faf2f1d1451c9135c996a6816b0 (patch)
treee25310448d48265dd30ad668feb2489be38c674b /app
parentdae07b32e50de8a3aa4c89d266c9272155beaaa4 (diff)
parent803a79f8367080141e38ed73065b5a3467f5a196 (diff)
downloadtangerine-wallet-browser-30e49b8545a33faf2f1d1451c9135c996a6816b0.tar.gz
tangerine-wallet-browser-30e49b8545a33faf2f1d1451c9135c996a6816b0.tar.zst
tangerine-wallet-browser-30e49b8545a33faf2f1d1451c9135c996a6816b0.zip
Merge pull request #5136 from MetaMask/remove-test-ens
Disable .test ENS resolution
Diffstat (limited to 'app')
-rw-r--r--app/manifest.json1
-rw-r--r--app/scripts/lib/ipfsContent.js2
2 files changed, 1 insertions, 2 deletions
diff --git a/app/manifest.json b/app/manifest.json
index 086d5ba00..3718f5c8a 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -63,7 +63,6 @@
"activeTab",
"webRequest",
"*://*.eth/",
- "*://*.test/",
"notifications"
],
"web_accessible_resources": [
diff --git a/app/scripts/lib/ipfsContent.js b/app/scripts/lib/ipfsContent.js
index 5db63f47d..38682b916 100644
--- a/app/scripts/lib/ipfsContent.js
+++ b/app/scripts/lib/ipfsContent.js
@@ -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 () {