fix pasv_url resolverFunction docs (#297)

This commit is contained in:
Amr Ibrahim
2022-04-18 23:50:49 +02:00
committed by GitHub
parent bc8abb14da
commit 1ad45fc757

View File

@@ -97,7 +97,7 @@ const resolverFunction = (address) => {
// }
const networks = getNetworks();
for (const network in networks) {
if (new Netmask(network).contains(ip)) {
if (new Netmask(network).contains(address)) {
return networks[network];
}
}