Skip to content

Commit

Permalink
fix: use friends_count for follower count
Browse files Browse the repository at this point in the history
  • Loading branch information
karashiiro committed Nov 25, 2023
1 parent 0016c6f commit 35e0a00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/profile.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ export function parseProfile(
banner: user.profile_banner_url,
biography: user.description,
followersCount: user.followers_count,
followingCount: user.favourites_count,
followingCount: user.friends_count,
friendsCount: user.friends_count,
mediaCount: user.media_count,
isPrivate: user.protected ?? false,
Expand Down

0 comments on commit 35e0a00

Please sign in to comment.