Skip to content

Commit

Permalink
Update src/middlewares.js
Browse files Browse the repository at this point in the history
Signed-off-by: Manuel <[email protected]>
  • Loading branch information
mtrezza authored Nov 17, 2023
1 parent a634da7 commit 3d378a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/middlewares.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const getBlockList = (ipRangeList, store) => {
store.set('allowAllIpv6', true);
return;
}
if (fullIp === '0.0.0.0') {
if (fullIp === '0.0.0.0/0' || fullIp === '0.0.0.0') {
store.set('allowAllIpv4', true);
return;
}
Expand Down

0 comments on commit 3d378a5

Please sign in to comment.