fix: remoteFollowers feature

This fixes the remoteFollowers feature, which was broken after the merge from Megalodon
This commit is contained in:
LucasGGamerM
2023-06-04 11:18:33 -03:00
parent 443a69b10d
commit faabc068ca
2 changed files with 2 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ public class FollowerListFragment extends AccountRelatedAccountListFragment{
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
targetAccount = account;
setSubtitle(getResources().getQuantityString(R.plurals.x_followers, (int)(account.followersCount%1000), account.followersCount));
}

View File

@@ -13,6 +13,7 @@ public class FollowingListFragment extends AccountRelatedAccountListFragment{
@Override
public void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState);
targetAccount = account;
setSubtitle(getResources().getQuantityString(R.plurals.x_following, (int)(account.followingCount%1000), account.followingCount));
}