mirror of
https://github.com/moparisthebest/Conversations
synced 2025-01-05 18:58:07 -05:00
bug fixes for forcing encryption
This commit is contained in:
parent
5cb11396f6
commit
a6f0f0cb6e
@ -363,7 +363,12 @@ public class Conversation extends AbstractEntity {
|
||||
return latest;
|
||||
}
|
||||
}
|
||||
return this.nextMessageEncryption;
|
||||
if (this.nextMessageEncryption == Message.ENCRYPTION_NONE && force
|
||||
&& getMode() == MODE_SINGLE) {
|
||||
return Message.ENCRYPTION_OTR;
|
||||
} else {
|
||||
return this.nextMessageEncryption;
|
||||
}
|
||||
}
|
||||
|
||||
public void setNextEncryption(int encryption) {
|
||||
|
Loading…
Reference in New Issue
Block a user