mirror of
https://github.com/kremalicious/umami.git
synced 2024-12-18 07:13:37 +01:00
Merge pull request #753 from nemunaire/b/cidr-comparaison
Ensure comparaison of same CIDR IP version
This commit is contained in:
commit
f1cb7e13c0
@ -24,7 +24,7 @@ export default async (req, res) => {
|
|||||||
const addr = ipaddr.parse(ip);
|
const addr = ipaddr.parse(ip);
|
||||||
const range = ipaddr.parseCIDR(i);
|
const range = ipaddr.parseCIDR(i);
|
||||||
|
|
||||||
if (addr.match(range)) return true;
|
if (addr.kind() === range[0].kind() && addr.match(range)) return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
|
Loading…
Reference in New Issue
Block a user