Skip to content

Commit

Permalink
refactor(ui): Inherit Send / Sync bounds on RoomDataProvider from sup…
Browse files Browse the repository at this point in the history
…er traits
  • Loading branch information
jplatte authored and poljar committed Jan 9, 2025
1 parent eac5a5e commit b837865
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/matrix-sdk-ui/src/timeline/traits.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ impl RoomExt for Room {
}

pub(super) trait RoomDataProvider:
Clone + Send + Sync + 'static + PaginableRoom + PinnedEventsRoom
Clone + PaginableRoom + PinnedEventsRoom + 'static
{
fn own_user_id(&self) -> &UserId;
fn room_version(&self) -> RoomVersionId;
Expand Down

0 comments on commit b837865

Please sign in to comment.