Skip to content

Commit

Permalink
Fixed URL lowercase'd when opening Incognito
Browse files Browse the repository at this point in the history
  • Loading branch information
pmsosa authored Aug 6, 2020
1 parent 7656ef2 commit d88eabb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions background.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ function hide(info){
chrome.tabs.get(info.tabId, function(tab){
if (info.type=="main_frame" & tab != undefined){

url = info.url.toLowerCase();
url = info.url; //.toLowerCase();
console.debug(info);

chrome.tabs.remove(info.tabId);
Expand Down Expand Up @@ -93,4 +93,4 @@ function initBlacklist(){
}
}
);
}
}

0 comments on commit d88eabb

Please sign in to comment.