Skip to content

Commit

Permalink
fixup! crypto: FFI bindings for subscribe_to_identity_status_changes
Browse files Browse the repository at this point in the history
Clippy fixes
  • Loading branch information
andybalaam committed Oct 3, 2024
1 parent 1d8c735 commit ff46ff5
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions bindings/matrix-sdk-ffi/src/room.rs
Original file line number Diff line number Diff line change
Expand Up @@ -600,10 +600,7 @@ impl Room {
.into_iter()
.map(|change| {
let user_id = change.user_id.to_string();
IdentityStatusChange {
user_id,
changed_to: change.changed_to.into(),
}
IdentityStatusChange { user_id, changed_to: change.changed_to }
})
.collect(),
);
Expand Down

0 comments on commit ff46ff5

Please sign in to comment.