Skip to content

Commit 7fa98b0

Browse files
committed
indexeddb: fudge implementation of get_received_room_key_bundle_data
1 parent cd6d8af commit 7fa98b0

File tree

1 file changed

+3
-2
lines changed
  • crates/matrix-sdk-indexeddb/src/crypto_store

1 file changed

+3
-2
lines changed

crates/matrix-sdk-indexeddb/src/crypto_store/mod.rs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1359,8 +1359,9 @@ impl_crypto_store! {
13591359
.transpose()
13601360
}
13611361

1362-
async fn get_received_room_key_bundle_data(&self, _room_id: &RoomId, _user_id: &UserId) -> Result<Option<StoredRoomKeyBundleData>> {
1363-
todo!()
1362+
fn get_received_room_key_bundle_data(&self, _room_id: &RoomId, _user_id: &UserId) -> Result<Option<StoredRoomKeyBundleData>> {
1363+
// TODO: not yet implemented for indexeddb
1364+
Ok(None)
13641365
}
13651366

13661367
async fn get_custom_value(&self, key: &str) -> Result<Option<Vec<u8>>> {

0 commit comments

Comments
 (0)