indexeddb: fudge implementation of get_received_room_key_bundle_data

This commit is contained in:
Richard van der Hoff
2025-04-16 16:28:32 +01:00
parent e89c45ba42
commit 85e0626d5f

View File

@@ -1359,8 +1359,10 @@ impl_crypto_store! {
.transpose()
}
#[allow(clippy::unused_async)]
async fn get_received_room_key_bundle_data(&self, _room_id: &RoomId, _user_id: &UserId) -> Result<Option<StoredRoomKeyBundleData>> {
todo!()
// TODO: not yet implemented for indexeddb
Ok(None)
}
async fn get_custom_value(&self, key: &str) -> Result<Option<Vec<u8>>> {