fix for closed groups

pull/196/head
ryanzhao 5 years ago
parent df1b2d249f
commit dc73553a56

@ -205,6 +205,7 @@ public final class SyncMessagesProtocol : NSObject {
var thread: TSGroupThread! = TSGroupThread(groupId: groupModel.groupId, transaction: transaction) var thread: TSGroupThread! = TSGroupThread(groupId: groupModel.groupId, transaction: transaction)
if thread == nil { if thread == nil {
thread = TSGroupThread.getOrCreateThread(with: groupModel, transaction: transaction) thread = TSGroupThread.getOrCreateThread(with: groupModel, transaction: transaction)
thread.shouldThreadBeVisible = true
thread.save(with: transaction) thread.save(with: transaction)
} }
ClosedGroupsProtocol.establishSessionsIfNeeded(with: groupModel.groupMemberIds, in: thread, using: transaction) ClosedGroupsProtocol.establishSessionsIfNeeded(with: groupModel.groupMemberIds, in: thread, using: transaction)

Loading…
Cancel
Save