Formatting fixes
This commit is contained in:
parent
74026b742b
commit
6492801b89
|
@ -465,12 +465,12 @@ public class AxolotlService {
|
|||
WhisperMessage message = new WhisperMessage(incomingHeader.getContents());
|
||||
plaintext = cipher.decrypt(message);
|
||||
} catch (InvalidKeyException | InvalidKeyIdException | UntrustedIdentityException e) {
|
||||
Log.d(Config.LOGTAG, "Error decrypting axolotl header: " + e.getMessage());
|
||||
Log.d(Config.LOGTAG, "Error decrypting axolotl header, "+e.getClass().getName()+": " + e.getMessage());
|
||||
}
|
||||
} catch (LegacyMessageException | InvalidMessageException e) {
|
||||
Log.d(Config.LOGTAG, "Error decrypting axolotl header: " + e.getMessage());
|
||||
Log.d(Config.LOGTAG, "Error decrypting axolotl header, "+e.getClass().getName()+": " + e.getMessage());
|
||||
} catch (DuplicateMessageException | NoSessionException e) {
|
||||
Log.d(Config.LOGTAG, "Error decrypting axolotl header: " + e.getMessage());
|
||||
Log.d(Config.LOGTAG, "Error decrypting axolotl header, "+e.getClass().getName()+": " + e.getMessage());
|
||||
}
|
||||
return plaintext;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue