Skip to content

Commit

Permalink
Merge pull request #520 from koodekraker/bugfix/519-waze-join
Browse files Browse the repository at this point in the history
Wrong join in the Waze parser #519
  • Loading branch information
stark4n6 authored Sep 17, 2024
2 parents f094f7f + 0e9e8ca commit 2d2d6ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/artifacts/waze.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 2d2d6ba

Please sign in to comment.