fix getNextEncryption
This commit is contained in:
parent
442c284c8e
commit
5363470bcf
|
@ -600,7 +600,7 @@ public class Conversation extends AbstractEntity implements Blockable, Comparabl
|
|||
defaultEncryption = Message.ENCRYPTION_NONE;
|
||||
}
|
||||
int encryption = this.getIntAttribute(ATTRIBUTE_NEXT_ENCRYPTION, defaultEncryption);
|
||||
if (encryption == Message.ENCRYPTION_OTR) {
|
||||
if (encryption == Message.ENCRYPTION_OTR || encryption < 0) {
|
||||
return defaultEncryption;
|
||||
} else {
|
||||
return encryption;
|
||||
|
|
|
@ -1272,16 +1272,12 @@ public class ConversationFragment extends XmppFragment implements EditMessage.Ke
|
|||
}
|
||||
selectPresenceToAttachFile(attachmentChoice);
|
||||
} else {
|
||||
final ConversationFragment fragment = (ConversationFragment) getFragmentManager()
|
||||
.findFragmentByTag("conversation");
|
||||
if (fragment != null) {
|
||||
fragment.showNoPGPKeyDialog(false, (dialog, which) -> {
|
||||
showNoPGPKeyDialog(false, (dialog, which) -> {
|
||||
conversation.setNextEncryption(Message.ENCRYPTION_NONE);
|
||||
activity.xmppConnectionService.updateConversation(conversation);
|
||||
selectPresenceToAttachFile(attachmentChoice);
|
||||
});
|
||||
}
|
||||
}
|
||||
} else {
|
||||
activity.showInstallPgpDialog();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue