Added comments

pull/180/head
M66B 5 years ago
parent e5883a4412
commit 12b0d25f19

@ -3237,6 +3237,8 @@ public class FragmentCompose extends FragmentBase {
// - list // - list
// - receipt // - receipt
// - participation // - participation
// References
if ("reply".equals(action) || "reply_all".equals(action) || if ("reply".equals(action) || "reply_all".equals(action) ||
"list".equals(action) || "list".equals(action) ||
"receipt".equals(action) || "receipt".equals(action) ||
@ -3308,6 +3310,7 @@ public class FragmentCompose extends FragmentBase {
} else if ("editasnew".equals(action)) } else if ("editasnew".equals(action))
data.draft.thread = data.draft.msgid; data.draft.thread = data.draft.msgid;
// Subject
String subject = (ref.subject == null ? "" : ref.subject); String subject = (ref.subject == null ? "" : ref.subject);
if ("reply".equals(action) || "reply_all".equals(action)) { if ("reply".equals(action) || "reply_all".equals(action)) {
if (prefix_once) if (prefix_once)
@ -3364,13 +3367,17 @@ public class FragmentCompose extends FragmentBase {
} else if ("participation".equals(action)) } else if ("participation".equals(action))
data.draft.subject = status + ": " + ref.subject; data.draft.subject = status + ": " + ref.subject;
// Plain-only
if (ref.plain_only != null && ref.plain_only) if (ref.plain_only != null && ref.plain_only)
data.draft.plain_only = true; data.draft.plain_only = true;
// Encryption
if (ref.ui_encrypt != null && !EntityMessage.ENCRYPT_NONE.equals(ref.ui_encrypt)) { if (ref.ui_encrypt != null && !EntityMessage.ENCRYPT_NONE.equals(ref.ui_encrypt)) {
if (ActivityBilling.isPro(context)) if (ActivityBilling.isPro(context))
data.draft.ui_encrypt = ref.ui_encrypt; data.draft.ui_encrypt = ref.ui_encrypt;
} }
// Reply template
if (answer > 0) { if (answer > 0) {
EntityAnswer a = db.answer().getAnswer(answer); EntityAnswer a = db.answer().getAnswer(answer);
if (a != null) { if (a != null) {
@ -3381,6 +3388,7 @@ public class FragmentCompose extends FragmentBase {
} }
} }
// Reply header
String s = args.getString("selected"); String s = args.getString("selected");
if (ref.content && if (ref.content &&
!"editasnew".equals(action) && !"editasnew".equals(action) &&

Loading…
Cancel
Save