From 4f38242927fc357893e2a5df246727e1abd9e1e5 Mon Sep 17 00:00:00 2001 From: Mike Cao Date: Sun, 18 Jul 2021 23:48:30 -0700 Subject: [PATCH] Update geo lookup --- lib/request.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/request.js b/lib/request.js index dda9ede2..e5527f7d 100644 --- a/lib/request.js +++ b/lib/request.js @@ -64,7 +64,7 @@ export async function getCountry(req, ip) { // Database lookup if (!lookup) { - lookup = await maxmind.open(path.resolve(__dirname, '../public/geo/GeoLite2-Country.mmdb')); + lookup = await maxmind.open(path.resolve('./public/geo/GeoLite2-Country.mmdb')); } const result = lookup.get(ip);