Reload data source only after initialization

This commit is contained in:
ismailgulek
2021-11-11 22:38:41 +03:00
parent e41d889e5e
commit 0de8f92309
@@ -1128,7 +1128,15 @@ const CGFloat kTypingCellHeight = 24;
- (void)newThreadCreated:(NSNotification *)notification
{
[self reload];
NSUInteger count = 0;
@synchronized (bubbles)
{
count = bubbles.count;
}
if (count > 0)
{
[self reload];
}
}
#pragma mark - BubbleReactionsViewModelDelegate