fix(post-with-other-account): put an icon for it

Leaving an empty icon causes the app to crash, which is not fun :(
This commit is contained in:
LucasGGamerM
2024-07-17 12:23:32 -03:00
parent 87cb80867a
commit 18079454a9
2 changed files with 10 additions and 1 deletions

View File

@@ -1530,7 +1530,7 @@ public class UiUtils {
public static boolean pickAccountForCompose(Activity activity, String accountID, Bundle args) {
if (AccountSessionManager.getInstance().getLoggedInAccounts().size() > 1) {
UiUtils.pickAccount(activity, accountID, 0, 0, session -> {
UiUtils.pickAccount(activity, accountID, 0, R.drawable.ic_fluent_compose_28_regular, session -> {
args.putString("account", session.getID());
Nav.go(activity, ComposeFragment.class, args);
}, null);