Fix #1007 - Improve account picker when opening a message with another account

This commit is contained in:
Thomas 2023-12-19 16:03:02 +01:00
parent b6cbd8ea74
commit ace3dc089e
1 changed files with 1 additions and 0 deletions

View File

@ -2348,6 +2348,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
if (accounts.size() > 1) {
List<app.fedilab.android.mastodon.client.entities.api.Account> accountList = new ArrayList<>();
for (BaseAccount account : accounts) {
account.mastodon_account.acct += "@" + account.instance;
accountList.add(account.mastodon_account);
}
Handler mainHandler = new Handler(Looper.getMainLooper());