mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-28 03:46:00 +01:00
Added fail-safe
This commit is contained in:
@@ -495,7 +495,7 @@ public class EntityMessage implements Serializable {
|
||||
|
||||
DateFormat DTF = Helper.getDateTimeInstance(context);
|
||||
DTF.setTimeZone(hide_timezone ? TimeZone.getTimeZone("UTC") : TimeZone.getDefault());
|
||||
String date = DTF.format(received);
|
||||
String date = (received instanceof Number ? DTF.format(received) : "-");
|
||||
|
||||
Element p = document.createElement("p");
|
||||
if (extended) {
|
||||
|
||||
Reference in New Issue
Block a user