Don't force plain text when PGP/INLINE is not enabled
This commit is contained in:
parent
78d3b011e6
commit
4430abaf30
1 changed files with 4 additions and 0 deletions
|
@ -370,6 +370,10 @@ public class RecipientPresenter implements PermissionPingCallback {
|
|||
}
|
||||
|
||||
public boolean isForceTextMessageFormat() {
|
||||
if (!cryptoEnablePgpInline) {
|
||||
return false;
|
||||
}
|
||||
|
||||
ComposeCryptoStatus cryptoStatus = getCurrentCryptoStatus();
|
||||
return cryptoStatus.isEncryptionEnabled() || cryptoStatus.isSigningEnabled();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue