Skip to content

Commit

Permalink
fix: spelling
Browse files Browse the repository at this point in the history
  • Loading branch information
timbru31 committed Mar 29, 2017
1 parent 49f03cf commit 57ea119
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions js/background.js
Expand Up @@ -37,10 +37,10 @@ _browser.webNavigation.onCompleted.addListener(() => {

function interceptRequest(request) {
if (request && request.url) {
const sanitzeResult = sanitizeURL(request.url);
if (sanitzeResult.match) {
const sanitizedResult = sanitizeURL(request.url);
if (sanitizedResult.match) {
return {
redirectUrl: sanitzeResult.url
redirectUrl: sanitizedResult.url
};
}
}
Expand Down

0 comments on commit 57ea119

Please sign in to comment.