chore(Weather): use generic city name for default value

This commit is contained in:
Hasan A. Tekeoğlu
2025-07-03 10:00:08 +03:00
parent f51c0c7c9a
commit 8b83b42eed
+1 -1
View File
@@ -45,7 +45,7 @@ Singleton {
temp.sunset = data?.astronomy?.sunset || "0.0";
temp.windDir = data?.current?.winddir16Point || "N";
temp.wCode = data?.current?.weatherCode || "113";
temp.city = data?.location?.areaName[0].value || "Istanbul";
temp.city = data?.location?.areaName[0]?.value || "City";
temp.temp = "";
if (root.useUSCS) {
temp.wind = (data?.current?.windspeedMiles || 0) + " mph";