Bump libsignal-client to 0.2.3

This commit is contained in:
Jack Lloyd
2021-02-05 15:18:56 -05:00
committed by GitHub
parent c378e4413e
commit 8b7506ed2d
6 changed files with 11 additions and 14 deletions

View File

@@ -60,8 +60,8 @@ public class TextSecureSessionStore implements SessionStore {
SessionRecord sessionRecord = DatabaseFactory.getSessionDatabase(context).load(recipientId, address.getDeviceId());
return sessionRecord != null &&
sessionRecord.getSessionState().hasSenderChain() &&
sessionRecord.getSessionState().getSessionVersion() == CiphertextMessage.CURRENT_VERSION;
sessionRecord.hasSenderChain() &&
sessionRecord.getSessionVersion() == CiphertextMessage.CURRENT_VERSION;
} else {
return false;
}