OLMReader icon indicating copy to clipboard operation
OLMReader copied to clipboard

OLMReaderConsoleReader does not print email ID correctly in release

Open 5HT2 opened this issue 10 months ago • 0 comments

It looks like getValue() is missing and as such it does not implicitly cast to the correct email ID outside of tests

=	@Override
=	public void email(Email email, HashMap<String, byte[]> attachments) {
=		try {
-			System.out.println("EMail: " + email.getOPFMessageCopyMessageID());
+			System.out.println("EMail: " + email.getOPFMessageCopyMessageID().getValue());
=		} catch (final Exception e) {
=			e.printStackTrace();
=		}
=	}
Before After

5HT2 avatar Mar 05 '25 17:03 5HT2