Skip to content

v1.1

Latest

Choose a tag to compare

@Siv-nick Siv-nick released this 14 May 04:07
· 4 commits to master since this release
23d925d

the tool has now become dependable the lag in the dashboard is gone as well

;) but first

after installing ghunt fix this inherited bug:

(if you want to get data like map reviews and other gmail data you must do this)

GHunt crash FIX

  1. Locate the file
    In your virtual environment, the file is at:
    venv/lib/python3.12/site-packages/ghunt/parsers/people.py

  2. Find the problematic line (around line 164). It looks like:

    self.coverPhotos[cover_photo_data["metadata"]["container"]] = person_cover_photo
  3. Replace that line with:

    if "container" in cover_photo_data.get("metadata", {}):
        self.coverPhotos[cover_photo_data["metadata"]["container"]] = person_cover_photo

Now GHunt will no longer crash