Skip to content

Commit

Permalink
fixup! refactor: avoid use of async_trait for RoomIdentityProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
bnjbvr committed Dec 19, 2024
1 parent 23e36f6 commit 4c7d03d
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions crates/matrix-sdk/src/room/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,11 @@ use matrix_sdk_base::{
},
media::MediaThumbnailSettings,
store::StateStoreExt,
BoxFuture, ComposerDraft, RoomInfoNotableUpdateReasons, RoomMemberships, StateChanges,
StateStoreDataKey, StateStoreDataValue,
ComposerDraft, RoomInfoNotableUpdateReasons, RoomMemberships, StateChanges, StateStoreDataKey,
StateStoreDataValue,
};
#[cfg(all(feature = "e2e-encryption", not(target_arch = "wasm32")))]
use matrix_sdk_common::BoxFuture;
use matrix_sdk_common::{
deserialized_responses::SyncTimelineEvent,
executor::{spawn, JoinHandle},
Expand Down

0 comments on commit 4c7d03d

Please sign in to comment.