Fix currency

This commit is contained in:
2024-04-01 19:51:15 +02:00
parent ebaf5e4aee
commit 8e9dbe4ba1

View File

@@ -193,16 +193,16 @@ watch(ccodes, (codes) => {
console.log("IP=", geoip.value); console.log("IP=", geoip.value);
let fonud = false; let fonud = false;
scountry_list.value.forEach((c) => { settingsStore.ccountry_list.forEach((c) => {
if (c.code == geoip.value.iso_code) { if (c.code == geoip.value.iso_code) {
settingsStore.country = c; settingsStore.country = c;
found = true; found = true;
} }
}); });
if (fonud == false) settingsStore.country = scountry_list.value.filter((c) => {return c.code == 'GB'})[0]; if (fonud == false) settingsStore.country = settingsStore.ccountry_list.filter((c) => {return c.code == 'GB'})[0];
settingsStore.currency = countryCurrency.value[settingsStore.country.name]; settingsStore.currency = countryCurrency.value[settingsStore.country.name];
console.log("FC=", settingsStore.country); console.log("FC=", settingsStore.country,settingsStore.currency);
}); });
onMounted(fetch); onMounted(fetch);