Skip to content

Commit

Permalink
Merge pull request #202 from kappuccino/development
Browse files Browse the repository at this point in the history
Fix JSON fields for user info
  • Loading branch information
Datalux authored May 12, 2021
2 parents 621dd66 + 32f8ed9 commit 33d4e76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Osintgram.py
Original file line number Diff line number Diff line change
Expand Up @@ -553,8 +553,8 @@ def get_user_info(self):
'biography': data['biography'],
'edge_followed_by': data['follower_count'],
'edge_follow': data['following_count'],
'is_business_account': data['is_business_account'],
'is_verified': data['is_business'],
'is_business_account': data['is_business'],
'is_verified': data['is_verified'],
'profile_pic_url_hd': data['hd_profile_pic_url_info']['url']
}
if 'public_email' in data and data['public_email']:
Expand Down

0 comments on commit 33d4e76

Please # to comment.