1
0
Fork 0
mirror of https://github.com/KokaKiwi/BarInsta synced 2026-03-04 11:31:35 +00:00
This commit is contained in:
Austin Huang 2020-07-24 15:06:15 -04:00
parent b37c0ab620
commit 7fad022c15
No known key found for this signature in database
GPG key ID: 84C23AA04587A91F
6 changed files with 18 additions and 6 deletions

View file

@ -64,10 +64,10 @@ public final class ProfileFetcher extends AsyncTask<Void, Void, ProfileModel> {
timelineMedia.getLong("count"),
user.getJSONObject("edge_followed_by").getLong("count"),
user.getJSONObject("edge_follow").getLong("count"),
user.getBoolean("followed_by_viewer"),
user.getBoolean("restricted_by_viewer"),
user.getBoolean("blocked_by_viewer"),
user.getBoolean("requested_by_viewer"));
user.optBoolean("followed_by_viewer"),
user.optBoolean("restricted_by_viewer"),
user.optBoolean("blocked_by_viewer"),
user.optBoolean("requested_by_viewer"));
}
conn.disconnect();