From 76625a27c4aab55d9997f05394e37763fa135544 Mon Sep 17 00:00:00 2001 From: M66B Date: Wed, 2 Oct 2019 21:15:27 +0200 Subject: [PATCH] Fixed crash --- app/src/main/java/eu/faircode/email/FragmentCompose.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/eu/faircode/email/FragmentCompose.java b/app/src/main/java/eu/faircode/email/FragmentCompose.java index f5e48de728..053990a2b0 100644 --- a/app/src/main/java/eu/faircode/email/FragmentCompose.java +++ b/app/src/main/java/eu/faircode/email/FragmentCompose.java @@ -2179,7 +2179,7 @@ public class FragmentCompose extends FragmentBase { } else if ("participation".equals(action)) data.draft.subject = status + ": " + ref.subject; - if (ref.plain_only) + if (ref.plain_only != null && ref.plain_only) data.draft.plain_only = ref.plain_only; if (answer > 0) {