Use new geo folder.

This commit is contained in:
Mike Cao 2023-03-28 19:24:36 -07:00
parent 23d02e5aac
commit 05933ff1d2
3 changed files with 12 additions and 9 deletions

View file

@ -63,7 +63,9 @@ export async function getLocation(ip) {
// Database lookup
if (!lookup) {
lookup = await maxmind.open(path.resolve('node_modules/.geo/GeoLite2-Country.mmdb'));
const dir = path.join(process.cwd(), 'geo');
lookup = await maxmind.open(path.resolve(dir, 'GeoLite2-City.mmdb'));
}
const result = lookup.get(ip);