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

Commit

Permalink
refactor(static): remove duplicate operand
Browse files Browse the repository at this point in the history
  • Loading branch information
trieloff committed Apr 26, 2019
1 parent f238adb commit 4862d24
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion static.js
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ async function main({

const file = uri.normalize(entry);
console.log(file);
if (blacklisted(file, allow, deny) || blacklisted(file, allow, deny)) {
if (blacklisted(file, allow, deny)) {
return forbidden();
}

Expand Down

0 comments on commit 4862d24

Please sign in to comment.