mirror of
https://github.com/vanitasvitae/Smack.git
synced 2025-09-14 19:49:38 +02:00
Bump libsignal-protocol-java to 2.8.1
This commit is contained in:
parent
19b20fefec
commit
38844ee340
2 changed files with 17 additions and 1 deletions
|
@ -122,6 +122,22 @@ public class SignalOmemoStoreConnector
|
|||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public IdentityKey getIdentity(SignalProtocolAddress address) {
|
||||
OmemoDevice device;
|
||||
try {
|
||||
device = asOmemoDevice(address);
|
||||
} catch (XmppStringprepException e) {
|
||||
throw new AssertionError(e);
|
||||
}
|
||||
|
||||
try {
|
||||
return omemoStore.loadOmemoIdentityKey(getOurDevice(), device);
|
||||
} catch (IOException | CorruptedOmemoKeyException e) {
|
||||
throw new IllegalStateException(e);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public PreKeyRecord loadPreKey(int i) throws InvalidKeyIdException {
|
||||
PreKeyRecord preKey;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue