Fix NPE for recevied messages with missing public key

This commit is contained in:
Paul Schaub 2021-04-26 15:22:54 +02:00
parent 171f916df2
commit 2077a5dc96
1 changed files with 4 additions and 0 deletions

View File

@ -599,6 +599,10 @@ public final class OpenPgpManager extends Manager {
return;
}
if (contentElement == null) {
return;
}
else {
throw new AssertionError("Invalid element received: " + contentElement.getClass().getName());
}