We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
get_received_room_key_bundle_data
1 parent e89c45b commit 85e0626Copy full SHA for 85e0626
crates/matrix-sdk-indexeddb/src/crypto_store/mod.rs
@@ -1359,8 +1359,10 @@ impl_crypto_store! {
1359
.transpose()
1360
}
1361
1362
+ #[allow(clippy::unused_async)]
1363
async fn get_received_room_key_bundle_data(&self, _room_id: &RoomId, _user_id: &UserId) -> Result<Option<StoredRoomKeyBundleData>> {
- todo!()
1364
+ // TODO: not yet implemented for indexeddb
1365
+ Ok(None)
1366
1367
1368
async fn get_custom_value(&self, key: &str) -> Result<Option<Vec<u8>>> {
0 commit comments