fix email reply date sent missing year

This commit is contained in:
Yuri Kuznetsov
2024-09-24 15:23:14 +03:00
parent ad0f01f81b
commit 9c68fa2d66
+4
View File
@@ -459,6 +459,10 @@ class EmailHelper {
const dateSentMoment = this.getDateTime().toMoment(dateSent);
dateSentString = dateSentMoment.format(format);
if (dateSentMoment.year() !== this.getDateTime().getNowMoment().year()) {
dateSentString += ', ' + dateSentMoment.year();
}
}
let replyHeadString =