Open TWithers opened 8 years ago
I get several errors when running the getIPs function because the ip_regex.exec(candidate) returns null. Adding this check will ensure that the ip_addr only gets populated with valid ips and eliminates errors.
ip_regex.exec(candidate)
ip_addr
On second glance, this appears to only affect Chrome 46. Firefox has no issues. Don't know if it affects Chrome below 46.
I get several errors when running the getIPs function because the
ip_regex.exec(candidate)
returns null. Adding this check will ensure that theip_addr
only gets populated with valid ips and eliminates errors.