Skip to content

Commit

Permalink
Merge branch 'openmls-main' of https://github.com/xmtp/openmls into o…
Browse files Browse the repository at this point in the history
…penmls-main
  • Loading branch information
nplasterer committed May 8, 2024
2 parents f3ea4e4 + e6a2553 commit 8511443
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions openmls/src/group/mls_group/proposal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -394,7 +394,7 @@ impl MlsGroup {
#[allow(clippy::type_complexity)]
pub fn update_group_context_extensions<Provider: OpenMlsProvider>(
&mut self,
provider: &impl OpenMlsProvider,
provider: &Provider,
extensions: Extensions,
signer: &impl Signer,
) -> Result<
Expand All @@ -413,7 +413,7 @@ impl MlsGroup {
.proposal_store(&self.proposal_store)
.inline_proposals(inline_proposals)
.build();
let create_commit_result = self.group.create_commit(params, provider, signer).unwrap();
let create_commit_result = self.group.create_commit(params, provider, signer)?;

let mls_messages = self.content_to_mls_message(create_commit_result.commit, provider)?;
self.group_state = MlsGroupState::PendingCommit(Box::new(PendingCommitState::Member(
Expand Down

0 comments on commit 8511443

Please sign in to comment.