From 1b7d4e0686292c89a3d0ca5358f3a7202efc6a2f Mon Sep 17 00:00:00 2001 From: Morgan Pretty Date: Fri, 21 Mar 2025 08:09:40 +1100 Subject: [PATCH] Defaulted the initial "invited" control message to be read for the admin --- .../Message Handling/MessageSender+Groups.swift | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/SessionMessagingKit/Sending & Receiving/Message Handling/MessageSender+Groups.swift b/SessionMessagingKit/Sending & Receiving/Message Handling/MessageSender+Groups.swift index 5e15c5757..ea74efebc 100644 --- a/SessionMessagingKit/Sending & Receiving/Message Handling/MessageSender+Groups.swift +++ b/SessionMessagingKit/Sending & Receiving/Message Handling/MessageSender+Groups.swift @@ -71,7 +71,8 @@ extension MessageSender { try createdInfo.group.insert(db) try createdInfo.members.forEach { try $0.insert(db) } - /// Add a record of the initial invites going out + /// Add a record of the initial invites going out (default to being read as we don't want the creator of the group + /// to see the "Unread Messages" banner above this control message) _ = try? Interaction( threadId: createdInfo.group.id, threadVariant: .group, @@ -88,6 +89,7 @@ extension MessageSender { ) .infoString(using: dependencies), timestampMs: Int64(createdInfo.group.formationTimestamp * 1000), + wasRead: true, using: dependencies ).inserted(db)