mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-27 12:05:22 +00:00
Fixed open group message sending is not working.
This commit is contained in:
parent
24d36158ae
commit
db1d20835b
@ -14,14 +14,16 @@ import org.session.libsignal.libsignal.state.SessionStore;
|
|||||||
import org.session.libsignal.libsignal.state.SignalProtocolStore;
|
import org.session.libsignal.libsignal.state.SignalProtocolStore;
|
||||||
import org.session.libsignal.libsignal.state.SignedPreKeyRecord;
|
import org.session.libsignal.libsignal.state.SignedPreKeyRecord;
|
||||||
import org.session.libsignal.libsignal.state.SignedPreKeyStore;
|
import org.session.libsignal.libsignal.state.SignedPreKeyStore;
|
||||||
|
import org.thoughtcrime.securesms.crypto.IdentityKeyUtil;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
public class SignalProtocolStoreImpl implements SignalProtocolStore {
|
public class SignalProtocolStoreImpl implements SignalProtocolStore {
|
||||||
|
|
||||||
// private final PreKeyStore preKeyStore;
|
private final Context context;
|
||||||
// private final SignedPreKeyStore signedPreKeyStore;
|
// private final PreKeyStore preKeyStore;
|
||||||
// private final IdentityKeyStore identityKeyStore;
|
// private final SignedPreKeyStore signedPreKeyStore;
|
||||||
|
// private final IdentityKeyStore identityKeyStore;
|
||||||
private final SessionStore sessionStore;
|
private final SessionStore sessionStore;
|
||||||
|
|
||||||
public SignalProtocolStoreImpl(Context context) {
|
public SignalProtocolStoreImpl(Context context) {
|
||||||
@ -29,12 +31,14 @@ public class SignalProtocolStoreImpl implements SignalProtocolStore {
|
|||||||
// this.signedPreKeyStore = new TextSecurePreKeyStore(context);
|
// this.signedPreKeyStore = new TextSecurePreKeyStore(context);
|
||||||
// this.identityKeyStore = new TextSecureIdentityKeyStore(context);
|
// this.identityKeyStore = new TextSecureIdentityKeyStore(context);
|
||||||
this.sessionStore = new TextSecureSessionStore(context);
|
this.sessionStore = new TextSecureSessionStore(context);
|
||||||
|
this.context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public IdentityKeyPair getIdentityKeyPair() {
|
public IdentityKeyPair getIdentityKeyPair() {
|
||||||
|
return IdentityKeyUtil.getIdentityKeyPair(context);
|
||||||
// return identityKeyStore.getIdentityKeyPair();
|
// return identityKeyStore.getIdentityKeyPair();
|
||||||
throw new UnsupportedOperationException("This method will be removed with refactor.");
|
// throw new UnsupportedOperationException("This method will be removed with refactor.");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
Reference in New Issue
Block a user