Skip to content
This repository has been archived by the owner on Nov 6, 2023. It is now read-only.

Commit

Permalink
Fix regression in #17010 (Fixes #17087)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hainish committed Nov 26, 2018
1 parent 7900ac4 commit 6d73a79
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions chromium/background-scripts/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,13 +330,6 @@ function onBeforeRequest(details) {

let uri = new URL(details.url);

/**
* We never wanted to rewrite HTTPS requests
*/
if ('https:' === uri.protocol) {
return;
}

// Check if a user has disabled HTTPS Everywhere on this site. We should
// ensure that all subresources are not run through HTTPS Everywhere as well.
let firstPartyHost;
Expand Down

0 comments on commit 6d73a79

Please sign in to comment.