From 0bb39627631f0cf92970cbc585f4b723cca9471e Mon Sep 17 00:00:00 2001 From: Nicholas Molnar <65710+neekolas@users.noreply.github.com> Date: Wed, 8 Nov 2023 17:04:11 -0800 Subject: [PATCH] Actually call post-commit --- xmtp_mls/src/groups/mod.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xmtp_mls/src/groups/mod.rs b/xmtp_mls/src/groups/mod.rs index 35ad23ae9..7187cc8d8 100644 --- a/xmtp_mls/src/groups/mod.rs +++ b/xmtp_mls/src/groups/mod.rs @@ -132,6 +132,8 @@ where intent.store(&mut conn)?; self.publish_intents(&mut conn).await?; + // ... sync state with the network + self.post_commit(&mut conn).await?; Ok(()) }