Avoid data source reload on thread screen itself

This commit is contained in:
ismailgulek
2022-02-07 12:52:33 +03:00
parent c6d916f13d
commit 4a66d88f58
@@ -1000,6 +1000,11 @@ const CGFloat kTypingCellHeight = 24;
- (void)newThreadCreated:(NSNotification *)notification
{
if (self.threadId)
{
// no need to reload the thread screen
return;
}
NSUInteger count = 0;
@synchronized (bubbles)
{