diff options
author | bitpshr <mail@bitpshr.net> | 2018-08-25 00:40:37 +0800 |
---|---|---|
committer | bitpshr <mail@bitpshr.net> | 2018-08-25 00:40:37 +0800 |
commit | 803a79f8367080141e38ed73065b5a3467f5a196 (patch) | |
tree | e25310448d48265dd30ad668feb2489be38c674b /app | |
parent | dae07b32e50de8a3aa4c89d266c9272155beaaa4 (diff) | |
download | tangerine-wallet-browser-803a79f8367080141e38ed73065b5a3467f5a196.tar.gz tangerine-wallet-browser-803a79f8367080141e38ed73065b5a3467f5a196.tar.zst tangerine-wallet-browser-803a79f8367080141e38ed73065b5a3467f5a196.zip |
Do not resolve .test domains using ENS
Diffstat (limited to 'app')
-rw-r--r-- | app/manifest.json | 1 | ||||
-rw-r--r-- | app/scripts/lib/ipfsContent.js | 2 |
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 () { |