mirror of https://github.com/M66B/FairEmail.git
Fixed placeholders standard answers
This commit is contained in:
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…
Reference in New Issue