Fixed placeholders standard answers

pull/125/head
M66B 6 years ago
parent 674a22f95d
commit b69ceb7464

@ -815,10 +815,10 @@ public class FragmentCompose extends FragmentEx {
if (answer > 0) {
text = db.answer().getAnswer(answer).text;
String name = "";
String name = null;
if (draft.to != null && draft.to.length > 0)
name = ((InternetAddress) draft.to[0]).getPersonal();
text = text.replace("$name$", name);
text = text.replace("$name$", name == null ? "" : name);
}
draft.subject = context.getString(R.string.title_subject_reply, ref.subject);
body = String.format("%s<br><br>%s %s:<br><br>%s",

Loading…
Cancel
Save