Skip to content

Commit fc3041b

Browse files
committed
🐛 Fix typo in Google Maps URL parsing
1 parent 6d10b03 commit fc3041b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

backend/trip/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.7.2"
1+
__version__ = "1.7.3"

src/src/app/services/utils.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class UtilsService {
6262
}
6363

6464
let place = decodeURIComponent(placeMatch[1].replace(/\+/g, " ").trim());
65-
let latlng = `${latMatch[1]}, ${lngMatch[1]}`;
65+
let latlng = `${latMatch[1]},${lngMatch[1]}`;
6666
return [place, latlng];
6767
}
6868

0 commit comments

Comments
 (0)