Also decrypt messages from UNTRUSTED sessions

This commit is contained in:
Andreas Straub 2015-07-20 23:16:06 +02:00
parent d2845e9ac1
commit 971aa3a11e

View File

@ -524,6 +524,7 @@ public class AxolotlService {
byte[] plaintext = null;
switch (getTrust()) {
case UNDECIDED:
case UNTRUSTED:
case TRUSTED:
try {
try {
@ -553,7 +554,6 @@ public class AxolotlService {
break;
case COMPROMISED:
case UNTRUSTED:
default:
// ignore
break;