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/scripts | |
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/scripts')
-rw-r--r-- | app/scripts/lib/ipfsContent.js | 2 |
1 files changed, 1 insertions, 1 deletions
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 () { |