Skip to content

Commit

Permalink
Getting ready for offline video player
Browse files Browse the repository at this point in the history
  • Loading branch information
DanieL authored and DanieL committed Jul 21, 2022
1 parent 88a3c10 commit 411a7e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sw.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,14 +121,14 @@ function ruleMatches(rules, extension, request) {
if (!ruleIsValid) {
return false;
}
console.log('ruleMatches', i, rule, request.url);
//console.log('ruleMatches', i, rule, request.url);
}
if (i == 'url') {
ruleIsValid = request.url === rule;
if (!ruleIsValid) {
return false;
}
console.log('ruleMatches', i, rule);
//console.log('ruleMatches', i, rule);
}
}
}
Expand Down

0 comments on commit 411a7e7

Please sign in to comment.