Skip to content

Commit

Permalink
Merge pull request #98 from lulajax/fix-issue-97
Browse files Browse the repository at this point in the history
adjust the position of the followingCount and followers
  • Loading branch information
jwdeveloper authored Aug 23, 2024
2 parents d5a3213 + 20bb05e commit bf755bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public User getUser(JsonObject jsonElement) {
var link = pictureElement.getAsJsonArray("url_list").get(1).getAsString();
var picture = new Picture(link);

var user = new User(id, name, profileName, picture, followers, followingCount, new ArrayList<>());
var user = new User(id, name, profileName, picture, followingCount, followers, new ArrayList<>());
user.addAttribute(UserAttribute.LiveHost);
return user;
}
Expand Down

0 comments on commit bf755bc

Please sign in to comment.