abrignoni / ALEAPP

Android Logs Events And Protobuf Parser
MIT License
528 stars 113 forks source link

Wrong join in the Waze parser #519

Closed koodekraker closed 2 months ago

koodekraker commented 2 months ago

In the Waze parser, the table RECENTS and PLACES are join, but based on the wrong id. There is a place_id in the RECENTS table, which should be used to join them together instead of the primary key of the RECENTS table itself.

Scripts/artifacts/waze.py:22

join RECENTS on PLACES.id = RECENTS.id

should be

join RECENTS on PLACES.id = RECENTS.place_id

stark4n6 commented 2 months ago

Closing thanks to PR

koodekraker commented 2 months ago

Your're welcome, thanks for the awesome tool!