Merge pull request #98 from lulajax/fix-issue-97

adjust the position of the followingCount and followers
This commit is contained in:
Jacek W
2024-08-23 09:23:49 +02:00
committed by GitHub

View File

@@ -142,7 +142,7 @@ public class LiveDataMapper {
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;
}