From 0e9e8ca1c14a4d2a2db77d1f12bc4f9a1d821ff4 Mon Sep 17 00:00:00 2001 From: Maarten Aalbers Date: Tue, 17 Sep 2024 16:43:24 +0200 Subject: [PATCH] Wrong join in the Waze parser #519 --- scripts/artifacts/waze.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/artifacts/waze.py b/scripts/artifacts/waze.py index 516809d7..93b381c2 100755 --- a/scripts/artifacts/waze.py +++ b/scripts/artifacts/waze.py @@ -19,7 +19,7 @@ def get_waze(files_found, report_folder, seeker, wrap_text, time_offset): round(PLACES.latitude*.000001,6), round(PLACES.longitude*.000001,6) from PLACES - join RECENTS on PLACES.id = RECENTS.id + join RECENTS on PLACES.id = RECENTS.place_id ''') all_rows = cursor.fetchall()