mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-08 10:03:51 +02:00
Fixed resume creating new message
The fragment might be paused before a new draft was created
This commit is contained in:
@@ -371,7 +371,7 @@ public class FragmentCompose extends FragmentEx {
|
||||
} else {
|
||||
long id = savedInstanceState.getLong("working");
|
||||
Bundle args = new Bundle();
|
||||
args.putString("action", "edit");
|
||||
args.putString("action", id < 0 ? "new" : "edit");
|
||||
args.putLong("id", id);
|
||||
args.putLong("account", -1);
|
||||
args.putLong("reference", -1);
|
||||
|
||||
Reference in New Issue
Block a user