Update code.js

This commit is contained in:
iBug ♦ 2018-08-28 15:30:33 +08:00 committed by GitHub
parent 3fdd6e1c65
commit 213ad0bd25
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ function belongsToSubnet(host, list) {
// Match // Match
var masked = ip & list[x][1]; var masked = ip & list[x][1];
return (masked >>> 0) == (list[x][0] >>> 0); return (masked ^ list[x][0]) == 0;
} }
var proxy = "__PROXY__"; var proxy = "__PROXY__";