Skip to content

Commit

Permalink
Fixed fetching uuids
Browse files Browse the repository at this point in the history
  • Loading branch information
adw0rd committed May 17, 2023
1 parent 927e17d commit 8759a17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion instagrapi/mixins/auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ def init(self) -> bool:
# c7aeefd59aab78fc0a703ea060ffb631e005e2b3948efb9d73ee6a346c446bf3
self.bloks_versioning_id = "ce555e5500576acd8e84a66018f54a05720f2dce29f0bb5a1f97f0c10d6fac48" # this param is constant and will change by Instagram app version
self.set_user_agent(self.settings.get("user_agent"))
self.set_uuids(self.settings.get("uuids", {}))
self.set_uuids(self.settings.get("uuids") or {})
self.set_locale(self.settings.get("locale", self.locale))
self.set_country(self.settings.get("country", self.country))
self.set_country_code(self.settings.get("country_code", self.country_code))
Expand Down

0 comments on commit 8759a17

Please sign in to comment.