Moved geo database location.

This commit is contained in:
Mike Cao 2022-08-03 19:20:13 -07:00
parent 48dc02c2d4
commit c37554214d
2 changed files with 2 additions and 2 deletions

View file

@ -68,7 +68,7 @@ export async function getCountry(req, ip) {
// Database lookup
if (!lookup) {
lookup = await maxmind.open(path.resolve('./public/geo/GeoLite2-Country.mmdb'));
lookup = await maxmind.open(path.resolve('node_modules/.geo/GeoLite2-Country.mmdb'));
}
const result = lookup.get(ip);