Fix #1007 - Improve account picker when opening a message with another account
This commit is contained in:
parent
b6cbd8ea74
commit
ace3dc089e
|
@ -2348,6 +2348,7 @@ public class StatusAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder>
|
||||||
if (accounts.size() > 1) {
|
if (accounts.size() > 1) {
|
||||||
List<app.fedilab.android.mastodon.client.entities.api.Account> accountList = new ArrayList<>();
|
List<app.fedilab.android.mastodon.client.entities.api.Account> accountList = new ArrayList<>();
|
||||||
for (BaseAccount account : accounts) {
|
for (BaseAccount account : accounts) {
|
||||||
|
account.mastodon_account.acct += "@" + account.instance;
|
||||||
accountList.add(account.mastodon_account);
|
accountList.add(account.mastodon_account);
|
||||||
}
|
}
|
||||||
Handler mainHandler = new Handler(Looper.getMainLooper());
|
Handler mainHandler = new Handler(Looper.getMainLooper());
|
||||||
|
|
Loading…
Reference in New Issue