Skip to content

Commit

Permalink
fixup! feat: Add support for MSC4171
Browse files Browse the repository at this point in the history
  • Loading branch information
poljar committed Dec 3, 2024
1 parent a882738 commit 68c8b97
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/matrix-sdk-base/src/rooms/normal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2636,7 +2636,7 @@ mod tests {
members.insert(bot.into(), f.member(bot).display_name("Bot").into_raw());

let member_hints_content =
f.member_hints(BTreeSet::from([bot.to_owned()])).sender(&me).into_raw();
f.member_hints(BTreeSet::from([bot.to_owned()])).sender(me).into_raw();
changes
.state
.entry(room_id.to_owned())
Expand Down Expand Up @@ -2706,7 +2706,7 @@ mod tests {
members.insert(bot.into(), f.member(bot).display_name("Bot").into_raw());

let member_hints_content =
f.member_hints(BTreeSet::from([bot.to_owned()])).sender(&me).into_raw();
f.member_hints(BTreeSet::from([bot.to_owned()])).sender(me).into_raw();
changes
.state
.entry(room_id.to_owned())
Expand Down

0 comments on commit 68c8b97

Please sign in to comment.