🐛 Fix typo in Google Maps URL parsing
This commit is contained in:
parent
6d10b036dd
commit
fc3041be61
@ -1 +1 @@
|
||||
__version__ = "1.7.2"
|
||||
__version__ = "1.7.3"
|
||||
|
||||
@ -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];
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user