MESSENGER-6019 fix permalink bugs

This commit is contained in:
JanNiklas Grabowski
2024-05-28 16:56:48 +02:00
parent 6ccae94d16
commit 03c79fc8eb
6 changed files with 51 additions and 0 deletions
@@ -791,6 +791,15 @@ typedef NS_ENUM (NSUInteger, MXKRoomDataSourceError) {
userInfo:@{
kMXKRoomDataSourceTimelineErrorErrorKey: error
}];
// bwi: #6019 in special cases the timeline is empty, if an error occurs, reload the timeline to display the timeline
// Do a "classic" reset. The room view controller will paginate
// from the events stored in the timeline store
[self.timeline resetPagination];
// Update here data source state if it is not already ready
[self setState:MXKDataSourceStateReady];
}];
}
}