Browse Source

Fixed placeholders standard answers

main
M66B 5 years ago
parent
commit
b69ceb7464
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/src/main/java/eu/faircode/email/FragmentCompose.java

+ 2
- 2
app/src/main/java/eu/faircode/email/FragmentCompose.java View File

@ -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