Rename "pendingPreKey" to "unacknowledgedPreKeyMessage"

This commit is contained in:
Moxie Marlinspike
2014-07-18 13:26:55 -07:00
parent e0d2398ca5
commit 42cf53e487
4 changed files with 49 additions and 30 deletions

View File

@@ -83,6 +83,6 @@ public class KeyExchangeInitiator {
SessionStore sessionStore = new TextSecureSessionStore(context, masterSecret);
SessionRecord sessionRecord = sessionStore.loadSession(recipient.getRecipientId(), RecipientDevice.DEFAULT_DEVICE_ID);
return sessionRecord.getSessionState().hasPendingPreKey();
return sessionRecord.getSessionState().hasPendingKeyExchange();
}
}