Skip to content

Commit

Permalink
demonstrate
Browse files Browse the repository at this point in the history
  • Loading branch information
codabrink committed Nov 21, 2024
1 parent e4130a1 commit abc9b33
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
4 changes: 0 additions & 4 deletions bindings_ffi/src/mls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4452,10 +4452,6 @@ mod tests {
);

// Sync all clients including Alix's new instance
alix_group
.add_members(vec![alix_client2.account_address.clone()])
.await
.unwrap();
alix.conversations().sync().await.unwrap();
alix.conversations().sync_all_conversations().await.unwrap();
bo.conversations().sync_all_conversations().await.unwrap();
Expand Down
2 changes: 1 addition & 1 deletion xmtp_mls/src/groups/mls_sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1174,7 +1174,7 @@ where
.conn_ref()
.get_installations_time_checked(self.group_id.clone())?;
let elapsed_ns = now_ns - last_ns;
if elapsed_ns > interval_ns {
if elapsed_ns > interval_ns || true {
self.add_missing_installations(provider).await?;
provider
.conn_ref()
Expand Down

0 comments on commit abc9b33

Please sign in to comment.