...
|
...
|
@@ -3,7 +3,7 @@ const logger = global.yoho.logger; |
|
|
|
|
|
const ipQuery = new IP2Region();
|
|
|
|
|
|
async function getIsp(ip) {
|
|
|
function getIsp(ip) {
|
|
|
try {
|
|
|
|
|
|
const result = ipQuery.search(ip);
|
...
|
...
|
@@ -15,7 +15,7 @@ async function getIsp(ip) { |
|
|
country: result.country
|
|
|
};
|
|
|
} catch (e) {
|
|
|
logger.error(e);
|
|
|
logger.error('[ip] find ip error [%s]', e);
|
|
|
return {};
|
|
|
}
|
|
|
}
|
...
|
...
|
|