🐛 Fix typo in Google Maps URL parsing

This commit is contained in:
itskovacs 2025-07-24 21:43:31 +02:00
parent 6d10b036dd
commit fc3041be61
2 changed files with 2 additions and 2 deletions

View File

@ -1 +1 @@
__version__ = "1.7.2"
__version__ = "1.7.3"

View File

@ -62,7 +62,7 @@ export class UtilsService {
}
let place = decodeURIComponent(placeMatch[1].replace(/\+/g, " ").trim());
let latlng = `${latMatch[1]}, ${lngMatch[1]}`;
let latlng = `${latMatch[1]},${lngMatch[1]}`;
return [place, latlng];
}