merge-upstream-5.0.1 #66

Merged
778a69cd merged 80 commits from merge-upstream-5.0.1 into main 2024-12-26 12:55:41 +01:00
Showing only changes of commit 9796304a9a - Show all commits

View file

@ -417,13 +417,17 @@ const userSettingsLocation = computed(() => {
coords.value,
placeName
);
return {
lat: coords.value?.latitude,
lon: coords.value?.longitude,
name: placeName,
picture: location?.pictureInfo,
isIPLocation: coords.value?.isIPLocation,
};
if (placeName) {
return {
lat: coords.value?.latitude,
lon: coords.value?.longitude,
name: placeName,
picture: location?.pictureInfo,
isIPLocation: coords.value?.isIPLocation,
};
} else {
return {};
}
});
const { result: currentUserLocationResult } = useQuery<{