From 4c3edf3155c174e26cdab4bfa6e460dbd73e143d Mon Sep 17 00:00:00 2001 From: yan Date: Wed, 28 Sep 2016 13:13:35 -0700 Subject: [PATCH] exclude https everywhere on gq.com fix https://github.com/brave/browser-laptop/issues/4366 Auditors: @bbondy Test Plan: 1. rm httpse.json from your user data folder 2. select 'clear cache' from history menu 3. restart brave, go to gq.com. it should not redirect to https. --- preload-httpse.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/preload-httpse.js b/preload-httpse.js index 0e3fff164ff..ffca3915a96 100644 --- a/preload-httpse.js +++ b/preload-httpse.js @@ -26,7 +26,8 @@ var exclusions = { 'Vodafone.ie.xml': 'breaks pagination on http://shop.vodafone.ie/shop/phonesAndPlans/phonesAndPlansHome.jsp?subPage=phones&planFilter=onAccount', 'IDownloadBlog.xml': 'breaks http://www.idownloadblog.com/', 'EBay_static.com.xml': 'breaks suggested product image previews', - 'Cisco.xml': 'breaks http://www.cisco.com/c/m/en_us/training-events/events-webinars/techwise-tv/listings.html' + 'Cisco.xml': 'breaks http://www.cisco.com/c/m/en_us/training-events/events-webinars/techwise-tv/listings.html', + 'GQ.xml': 'mixed content on gq.com' } var rulesets = JSON.parse(fs.readFileSync('rulesets.json', 'utf8'))