Merge pull request #5511 from vector-im/ismail/5263_thread_blink

Avoid Thread Screen Blink
This commit is contained in:
ismailgulek
2022-02-07 14:13:00 +03:00
committed by GitHub
2 changed files with 6 additions and 0 deletions
@@ -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)
{
+1
View File
@@ -0,0 +1 @@
RoomDataSource: Avoid reloading of data source on thread screen itself.