From 8fe09555d13933bcf9cdfbf72a29246194c13dbd Mon Sep 17 00:00:00 2001 From: Christien Rioux Date: Sun, 1 Jun 2025 20:57:02 -0400 Subject: [PATCH] ensure reconciliation happens when remote conversation is added --- lib/chat/cubits/single_contact_messages_cubit.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/chat/cubits/single_contact_messages_cubit.dart b/lib/chat/cubits/single_contact_messages_cubit.dart index a3e7656..0ec1037 100644 --- a/lib/chat/cubits/single_contact_messages_cubit.dart +++ b/lib/chat/cubits/single_contact_messages_cubit.dart @@ -198,6 +198,9 @@ class SingleContactMessagesCubit extends Cubit { // Init the new DHTLog if we should _remoteMessagesRecordKey = remoteMessagesRecordKey; await _initRcvdMessagesDHTLog(); + + // Run reconciliation once for all input queues + _reconciliation.reconcileMessages(null); }); }