mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-31 01:51:24 +01:00
Prevent crash
This commit is contained in:
@@ -308,7 +308,7 @@ public class ServiceSynchronize extends LifecycleService {
|
||||
sb.append("<strong>").append(MessageHelper.getFormattedAddresses(message.from, false)).append("</strong>");
|
||||
if (!TextUtils.isEmpty(message.subject))
|
||||
sb.append(": ").append(message.subject);
|
||||
sb.append(" ").append(df.format(new Date(message.sent)));
|
||||
sb.append(" ").append(df.format(new Date(message.sent == null ? message.received : message.sent)));
|
||||
sb.append("<br>");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user