Skip to content

Commit bf755bc

Browse files
authored
Merge pull request #98 from lulajax/fix-issue-97
adjust the position of the followingCount and followers
2 parents d5a3213 + 20bb05e commit bf755bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Client/src/main/java/io/github/jwdeveloper/tiktok/http/mappers/LiveDataMapper.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public User getUser(JsonObject jsonElement) {
142142
var link = pictureElement.getAsJsonArray("url_list").get(1).getAsString();
143143
var picture = new Picture(link);
144144

145-
var user = new User(id, name, profileName, picture, followers, followingCount, new ArrayList<>());
145+
var user = new User(id, name, profileName, picture, followingCount, followers, new ArrayList<>());
146146
user.addAttribute(UserAttribute.LiveHost);
147147
return user;
148148
}

0 commit comments

Comments
 (0)