We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e303b57 commit f0cfff6Copy full SHA for f0cfff6
2 files changed
crates/matrix-sdk-indexeddb/src/crypto_store/migrations/v104_to_v106.rs
@@ -15,7 +15,7 @@
15
use indexed_db_futures::{
16
Build, error::OpenDbError, prelude::QuerySource, transaction::TransactionMode,
17
};
18
-use matrix_sdk_crypto::{GossippedSecret, store::types::SecretsInboxItem};
+use matrix_sdk_crypto::GossippedSecret;
19
use wasm_bindgen::JsValue;
20
21
use super::{MigrationDb, old_keys};
crates/matrix-sdk-indexeddb/src/crypto_store/mod.rs
@@ -34,7 +34,7 @@ use matrix_sdk_base::cross_process_lock::{
34
CrossProcessLockGeneration, FIRST_CROSS_PROCESS_LOCK_GENERATION,
35
36
use matrix_sdk_crypto::{
37
- Account, DeviceData, GossipRequest, GossippedSecret, SecretInfo, TrackedUser, UserIdentityData,
+ Account, DeviceData, GossipRequest, SecretInfo, TrackedUser, UserIdentityData,
38
olm::{
39
Curve25519PublicKey, InboundGroupSession, OlmMessageHash, OutboundGroupSession,
40
PickledInboundGroupSession, PrivateCrossSigningIdentity, SenderDataType, Session,
@@ -44,7 +44,7 @@ use matrix_sdk_crypto::{
44
CryptoStore, CryptoStoreError,
45
types::{
46
BackupKeys, Changes, DehydratedDeviceKey, PendingChanges, RoomKeyCounts,
47
- RoomKeyWithheldEntry, RoomPendingKeyBundleDetails, RoomSettings, SecretsInboxItem,
+ RoomKeyWithheldEntry, RoomPendingKeyBundleDetails, RoomSettings,
48
StoredRoomKeyBundleData,
49
},
50
0 commit comments