Skip to content

Commit

Permalink
fix: fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
tuddman committed Apr 8, 2024
1 parent d8b878a commit cd1bd25
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions xmtp_mls/src/groups/members.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,7 @@ pub fn aggregate_member_list(openmls_group: &OpenMlsGroup) -> Result<Vec<GroupMe
let member_map: HashMap<String, GroupMember> = openmls_group
.members()
.filter_map(|member| {
let basic_credential = BasicCredential::try_from(&member.credential)
.ok()?;
let basic_credential = BasicCredential::try_from(&member.credential).ok()?;
Identity::get_validated_account_address(
basic_credential.identity(),
&member.signature_key,
Expand Down

0 comments on commit cd1bd25

Please sign in to comment.