mirror of
https://gitlab.opencode.de/bwi/bundesmessenger/clients/bundesmessenger-ios.git
synced 2026-04-17 23:18:27 +02:00
Merge branch 'feature/5950_crash_on_blocking' into 'develop'
MESSENGER-5950 be aware of none Matrix erros See merge request bwmessenger/bundesmessenger/bundesmessenger-ios!359
This commit is contained in:
@@ -1583,7 +1583,11 @@ typedef NS_ENUM (NSUInteger, MXKRoomDataSourceError) {
|
||||
// Process at least events retrieved from store
|
||||
[self processQueuedEvents:^(NSUInteger addedHistoryCellNb, NSUInteger addedLiveCellNb) {
|
||||
|
||||
[operationErrors addObject:error];
|
||||
// bwi: #5950 check for nil error, this may happen on none matrix errors while paginating
|
||||
if (error) {
|
||||
[operationErrors addObject:error];
|
||||
}
|
||||
|
||||
if (addedHistoryCellNb)
|
||||
{
|
||||
addedCellNb += addedHistoryCellNb;
|
||||
|
||||
Reference in New Issue
Block a user