From 130a531bcd4250655c7a68b5335a03c47f6d1bc2 Mon Sep 17 00:00:00 2001 From: Rudo Kemper Date: Sun, 22 Sep 2024 23:09:44 -0400 Subject: [PATCH] Only parse coords from q= param if it's in coord format Signed-off-by: Rudo Kemper --- tools/python/google_maps_bookmarks.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tools/python/google_maps_bookmarks.py b/tools/python/google_maps_bookmarks.py index 04a7755cf0..aff3543b97 100755 --- a/tools/python/google_maps_bookmarks.py +++ b/tools/python/google_maps_bookmarks.py @@ -139,7 +139,11 @@ class GoogleMapsConverter: # cid parameter contains the place ID cid = query_params.get('cid', [None])[0] if q: - coordinates = q.split(',') + if ',' in q and all(part.replace('.', '', 1).isdigit() for part in q.split(',')): + coordinates = q.split(',') + else: + # TODO: handle non-coordinate q values + continue elif cid: # TODO: handle google maps URL with cid parameter continue