Fix #758 - Display instance of accounts in dialog when sharing

This commit is contained in:
Thomas 2023-01-19 16:54:23 +01:00
parent c2d270696d
commit fdec78fd61
1 changed files with 1 additions and 0 deletions

View File

@ -404,6 +404,7 @@ public class CrossActionHelper {
accounts = new Account(context).getAll();
List<app.fedilab.android.client.entities.api.Account> accountList = new ArrayList<>();
for (BaseAccount account : accounts) {
account.mastodon_account.acct += "@" + account.instance;
accountList.add(account.mastodon_account);
}
if (accounts.size() == 1) {