diff --git a/src/interface/desktop/chat.html b/src/interface/desktop/chat.html
index 3df00efc..cd47dae5 100644
--- a/src/interface/desktop/chat.html
+++ b/src/interface/desktop/chat.html
@@ -60,6 +60,7 @@
let region = null;
let city = null;
let countryName = null;
+ let countryCode = null;
let timezone = null;
let chatMessageState = {
newResponseTextEl: null,
@@ -76,6 +77,7 @@
region = data.region;
city = data.city;
countryName = data.country_name;
+ countryCode = data.country_code;
timezone = data.timezone;
})
.catch(err => {
@@ -157,6 +159,7 @@
...(!!city && { city: city }),
...(!!region && { region: region }),
...(!!countryName && { country: countryName }),
+ ...(!!countryCode && { country_code: countryCode }),
...(!!timezone && { timezone: timezone }),
};
diff --git a/src/interface/desktop/shortcut.html b/src/interface/desktop/shortcut.html
index 86e5d906..4b07b8ea 100644
--- a/src/interface/desktop/shortcut.html
+++ b/src/interface/desktop/shortcut.html
@@ -308,18 +308,19 @@