Skip to content

Commit 85e0626

Browse files
committed
indexeddb: fudge implementation of get_received_room_key_bundle_data
1 parent e89c45b commit 85e0626

File tree

1 file changed

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

1 file changed

+3
-1
lines changed

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

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

1362+
#[allow(clippy::unused_async)]
13621363
async fn get_received_room_key_bundle_data(&self, _room_id: &RoomId, _user_id: &UserId) -> Result<Option<StoredRoomKeyBundleData>> {
1363-
todo!()
1364+
// TODO: not yet implemented for indexeddb
1365+
Ok(None)
13641366
}
13651367

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

0 commit comments

Comments
 (0)