From 99d2dd42d5cd0f5ce65ffb12db6911bc8009d79d Mon Sep 17 00:00:00 2001 From: ryanzhao Date: Tue, 12 Oct 2021 09:27:09 +1100 Subject: [PATCH] fix first message not being functional issue --- SessionMessagingKit/Threads/TSThread.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SessionMessagingKit/Threads/TSThread.m b/SessionMessagingKit/Threads/TSThread.m index 3100e5955..6283a324d 100644 --- a/SessionMessagingKit/Threads/TSThread.m +++ b/SessionMessagingKit/Threads/TSThread.m @@ -364,7 +364,7 @@ BOOL IsNoteToSelfEnabled(void) if (!self.shouldBeVisible) { self.shouldBeVisible = YES; - [super saveWithTransaction:transaction]; + [self saveWithTransaction:transaction]; } else { [self touchWithTransaction:transaction]; }