From 803a79f8367080141e38ed73065b5a3467f5a196 Mon Sep 17 00:00:00 2001 From: bitpshr Date: Fri, 24 Aug 2018 12:40:37 -0400 Subject: [PATCH] Do not resolve .test domains using ENS --- app/manifest.json | 1 - app/scripts/lib/ipfsContent.js | 2 +- 2 files changed, 1 insertion(+), 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 () {