Skip to content

Commit

Permalink
surface include_dm_groups in bindings list function more clearly
Browse files Browse the repository at this point in the history
  • Loading branch information
cameronvoell committed Sep 21, 2024
1 parent 5d58c4c commit eb506f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bindings_ffi/src/mls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -832,10 +832,11 @@ impl FfiConversations {
let inner = self.inner_client.as_ref();
let convo_list: Vec<Arc<FfiGroup>> = inner
.find_groups(FindGroupParams {
allowed_states: None,
created_after_ns: opts.created_after_ns,
created_before_ns: opts.created_before_ns,
limit: opts.limit,
..FindGroupParams::default()
include_dm_groups: false,
})?
.into_iter()
.map(|group| {
Expand Down

0 comments on commit eb506f4

Please sign in to comment.