Skip to content

Commit

Permalink
fix: bump Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
tuddman committed Aug 1, 2024
1 parent 57b83dd commit f282068
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
8 changes: 4 additions & 4 deletions bindings_ffi/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 4 additions & 5 deletions bindings_ffi/src/mls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1217,11 +1217,10 @@ impl FfiGroup {

pub async fn stream(&self, message_callback: Box<dyn FfiMessageCallback>) -> FfiStreamCloser {
let inner_client = Arc::clone(&self.inner_client);
let handle = MlsGroup::stream_with_callback(
inner_client,
self.created_at_ns,
move |message| message_callback.on_message(message.into()),
);
let handle =
MlsGroup::stream_with_callback(inner_client, self.created_at_ns, move |message| {
message_callback.on_message(message.into())
});

FfiStreamCloser::new(handle)
}
Expand Down
13 changes: 7 additions & 6 deletions bindings_node/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit f282068

Please sign in to comment.