Bump matrix-sdk dependency to 0.10.0 (#397)

This commit is contained in:
Ken Rachynski 2025-05-15 18:56:35 -06:00 committed by GitHub
parent 6529e61963
commit 93502f9993
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 656 additions and 284 deletions

View file

@ -26,7 +26,7 @@ use matrix_sdk::{
encryption::verification::{SasVerification, Verification},
encryption::{BackupDownloadStrategy, EncryptionSettings},
event_handler::Ctx,
matrix_auth::MatrixSession,
authentication::matrix::MatrixSession,
reqwest,
room::{Messages, MessagesOptions, Room as MatrixRoom, RoomMember},
ruma::{
@ -1391,7 +1391,7 @@ impl ClientWorker {
req.limit = Some(1000u32.into());
req.max_depth = Some(1u32.into());
let resp = self.client.send(req, None).await.map_err(IambError::from)?;
let resp = self.client.send(req).await.map_err(IambError::from)?;
let rooms = resp.rooms.into_iter().map(|chunk| chunk.room_id).collect();