Change summary
src/main/java/eu/siacs/conversations/ui/ConversationFragment.java | 1 +
1 file changed, 1 insertion(+)
Detailed changes
@@ -1074,6 +1074,7 @@ public class ConversationFragment extends XmppFragment
protected boolean trustKeysIfNeeded(int requestCode) {
AxolotlService axolotlService = conversation.getAccount().getAxolotlService();
+ if (axolotlService == null) return false;
final List<Jid> targets = axolotlService.getCryptoTargets(conversation);
boolean hasUnaccepted = !conversation.getAcceptedCryptoTargets().containsAll(targets);
boolean hasUndecidedOwn =