mirror of
https://github.com/umami-software/umami.git
synced 2025-12-06 01:18:00 +01:00
Updated subdivision save.
This commit is contained in:
parent
fa52e6c83f
commit
43a4357729
2 changed files with 2 additions and 2 deletions
|
|
@ -137,7 +137,7 @@ async function clickhouseQuery(data: {
|
|||
session_id: sessionId,
|
||||
event_id: eventId,
|
||||
country: country ? country : null,
|
||||
subdivision1: subdivision1 ? country.concat('-', subdivision1) : null,
|
||||
subdivision1: country && subdivision1 ? `${country}-${subdivision1}` : null,
|
||||
subdivision2: subdivision2 ? subdivision2 : null,
|
||||
city: city ? city : null,
|
||||
url_path: urlPath?.substring(0, URL_LENGTH),
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue