Skip to content

Commit

Permalink
favorite count bug fixes.
Browse files Browse the repository at this point in the history
  • Loading branch information
mariotaku committed Nov 27, 2012
1 parent 75355c1 commit 4cbfcde
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/org/mariotaku/twidere/model/ParcelableUser.java
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public ParcelableUser(final User user, final long account_id, final long positio
followers_count = user.getFollowersCount(); followers_count = user.getFollowersCount();
friends_count = user.getFriendsCount(); friends_count = user.getFriendsCount();
statuses_count = user.getStatusesCount(); statuses_count = user.getStatusesCount();
favorites_count = user.getFollowersCount(); favorites_count = user.getFavouritesCount();
} }


@Override @Override
Expand Down

0 comments on commit 4cbfcde

Please sign in to comment.