mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-14 11:42:04 +01:00
Fix NPE for recevied messages with missing public key
This commit is contained in:
parent
171f916df2
commit
2077a5dc96
1 changed files with 4 additions and 0 deletions
|
@ -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());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue