Merge branch 'dev' into analytics

This commit is contained in:
Mike Cao 2023-04-25 16:57:06 -07:00
commit 13e6bd46a3

View File

@ -70,7 +70,7 @@ export async function getLocation(ip, req) {
return { return {
country, country,
subdivision1: region, subdivision1: region,
city: decodeURIComponent(city), city: city ? decodeURIComponent(city) : undefined,
}; };
} }