From b4dde0057673ee1324eaed15fa4f09479bab81fc Mon Sep 17 00:00:00 2001 From: Jazz Turner-Baggs <473256+jazzz@users.noreply.github.com> Date: Mon, 15 Jun 2026 12:30:20 -0700 Subject: [PATCH] Remove save_conversation for v2 --- core/conversations/src/core.rs | 7 ------- 1 file changed, 7 deletions(-) diff --git a/core/conversations/src/core.rs b/core/conversations/src/core.rs index 109e6ba..0997afa 100644 --- a/core/conversations/src/core.rs +++ b/core/conversations/src/core.rs @@ -240,13 +240,6 @@ impl<'a, S: ExternalServices + 'static> Core { // desynchronized state: MlsGroup persistence, conversation persistence, and // invite delivery all happen separately. let mut convo = GroupV2Convo::new(&mut self.services)?; - self.services - .store - .save_conversation(&storage::ConversationMeta { - local_convo_id: convo.id().to_string(), - remote_convo_id: "0".into(), - kind: ConversationKind::GroupV1, - })?; convo.add_member(&mut self.services, participants)?; let convo_id = convo.id().to_string();