added debug in downloadImageFromUrl and date of email to scanned Gmail results

This commit is contained in:
heyethereum
2024-07-28 10:59:45 +08:00
parent 3567457026
commit 0fde70a4b6
2 changed files with 35 additions and 27 deletions

View File

@@ -10,6 +10,7 @@ public class EmailMessage {
private String messageId;
private String subject;
private String historyId;
private String date;
@JsonInclude(JsonInclude.Include.NON_EMPTY)
List<QRCodeByContentId> qrCodeByContentId;
@@ -17,10 +18,11 @@ public class EmailMessage {
@JsonInclude(JsonInclude.Include.NON_EMPTY)
List<QRCodeByURL> qrCodeByURL;
public EmailMessage(String messageId, String subject, String historyId) {
public EmailMessage(String messageId, String subject, String historyId, String date) {
this.messageId = messageId;
this.subject = subject;
this.historyId = historyId;
this.date = date;
this.qrCodeByContentId = new ArrayList<>();
this.qrCodeByURL = new ArrayList<>();
}