Added protocol to account selection

This commit is contained in:
M66B 2022-03-25 10:48:12 +01:00
parent c269fe2320
commit 835a8cb51d
1 changed files with 1 additions and 0 deletions

View File

@ -110,6 +110,7 @@ public class FragmentDialogSelectAccount extends FragmentDialogBase {
EntityAccount account = adapter.getItem(which);
Bundle args = getArguments();
args.putLong("account", account.id);
args.putInt("protocol", account.protocol);
args.putString("name", account.name);
sendResult(RESULT_OK);
}