mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
Fixed city showing undefined.
This commit is contained in:
parent
4c544361fd
commit
f450fc35fb
1 changed files with 1 additions and 1 deletions
|
|
@ -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,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue