Skip to content

Commit

Permalink
remove async methods
Browse files Browse the repository at this point in the history
  • Loading branch information
nplasterer committed Apr 11, 2024
1 parent 9922a22 commit dfe225e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bindings_ffi/src/mls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -455,14 +455,14 @@ impl FfiGroup {
Ok(())
}

pub async fn group_name(&self) -> Result<String, GenericError> {
pub fn group_name(&self) -> Result<String, GenericError> {
let group = MlsGroup::new(
self.inner_client.as_ref(),
self.group_id.clone(),
self.created_at_ns,
);

let group_name = group.group_name().await?;
let group_name = group.group_name()?;

Ok(group_name)
}
Expand Down

0 comments on commit dfe225e

Please sign in to comment.