Skip to content

Commit

Permalink
Fix mismatched variable name #18
Browse files Browse the repository at this point in the history
  • Loading branch information
piroor committed Nov 24, 2017
1 parent bd647c2 commit ba13d40
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webextensions/background/background.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ browser.webRequest.onBeforeRequest.addListener(
aDetails.type != 'main_frame' ||
aDetails.documentUrl ||
aDetails.originUrl ||
requestDetails.tabId == -1 ||
aDetails.tabId == -1 ||
gTabs[aDetails.tabId].newTab)
return { cancel: false };

Expand Down

0 comments on commit ba13d40

Please sign in to comment.