enable all encryption options

This commit is contained in:
Daniel Gultsch 2017-07-13 09:59:43 +02:00
parent da87eac48e
commit 002dbf2e17
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@ public final class Config {
private static final int OTR = 4;
private static final int OMEMO = 8;
private static final int ENCRYPTION_MASK = OMEMO;
private static final int ENCRYPTION_MASK = UNENCRYPTED | OPENPGP | OTR | OMEMO;
public static boolean supportUnencrypted() {
return (ENCRYPTION_MASK & UNENCRYPTED) != 0;