mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-03 18:26:20 +00:00
Simplification
This commit is contained in:
parent
bbc8b8259c
commit
f0aacbe476
1 changed files with 4 additions and 3 deletions
|
@ -1812,11 +1812,12 @@ public class ServiceSynchronize extends LifecycleService {
|
|||
EntityLog.log(this, "Sent via " + ident.host + "/" + ident.user +
|
||||
" to " + TextUtils.join(", ", to));
|
||||
|
||||
// Append replied/forwarded text
|
||||
if (message.replying != null || message.forwarding != null) {
|
||||
String html = message.read(ServiceSynchronize.this);
|
||||
html += HtmlHelper.getQuote(ServiceSynchronize.this,
|
||||
String html = message.read(this);
|
||||
html += HtmlHelper.getQuote(this,
|
||||
message.replying == null ? message.forwarding : message.replying, false);
|
||||
message.write(ServiceSynchronize.this, html);
|
||||
message.write(this, html);
|
||||
}
|
||||
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue