mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-06 11:39:49 +00:00
Fixed send ... dialog closing
This commit is contained in:
parent
10a76722db
commit
03e93ffdc8
1 changed files with 1 additions and 3 deletions
|
@ -3657,10 +3657,8 @@ public class FragmentCompose extends FragmentBase {
|
|||
db.message().liveMessage(id).observe(getViewLifecycleOwner(), new Observer<TupleMessageEx>() {
|
||||
@Override
|
||||
public void onChanged(TupleMessageEx draft) {
|
||||
if (draft == null) {
|
||||
dismiss();
|
||||
if (draft == null)
|
||||
return;
|
||||
}
|
||||
|
||||
int plus = (draft.cc == null ? 0 : draft.cc.length) +
|
||||
(draft.bcc == null ? 0 : draft.bcc.length);
|
||||
|
|
Loading…
Add table
Reference in a new issue