Loading k9mail/src/main/java/com/fsck/k9/view/MessageCryptoDisplayStatus.java +8 −0 Original line number Diff line number Diff line Loading @@ -173,6 +173,14 @@ public enum MessageCryptoDisplayStatus { throw new AssertionError("Both OpenPGP results must be non-null at this point!"); } if (signatureResult.getResult() == OpenPgpSignatureResult.RESULT_NO_SIGNATURE && cryptoResult.hasEncapsulatedResult()) { CryptoResultAnnotation encapsulatedResult = cryptoResult.getEncapsulatedResult(); if (encapsulatedResult.isOpenPgpResult()) { signatureResult = encapsulatedResult.getOpenPgpSignatureResult(); } } // TODO handle mismatched user id switch (decryptionResult.getResult()) { Loading Loading
k9mail/src/main/java/com/fsck/k9/view/MessageCryptoDisplayStatus.java +8 −0 Original line number Diff line number Diff line Loading @@ -173,6 +173,14 @@ public enum MessageCryptoDisplayStatus { throw new AssertionError("Both OpenPGP results must be non-null at this point!"); } if (signatureResult.getResult() == OpenPgpSignatureResult.RESULT_NO_SIGNATURE && cryptoResult.hasEncapsulatedResult()) { CryptoResultAnnotation encapsulatedResult = cryptoResult.getEncapsulatedResult(); if (encapsulatedResult.isOpenPgpResult()) { signatureResult = encapsulatedResult.getOpenPgpSignatureResult(); } } // TODO handle mismatched user id switch (decryptionResult.getResult()) { Loading