Reverted commit 'a89895ab8319adb0ac689274b0e08732721a3228' (#4173) new fix https://github.com/matrix-org/matrix-ios-sdk/pull/1749

updated changelog
This commit is contained in:
JanNiklas Grabowski
2023-04-21 14:22:12 +02:00
parent f23fdabb1c
commit e851352904
2 changed files with 2 additions and 3 deletions
@@ -1196,8 +1196,7 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
{
RecentsInvitesTableViewCell *tableViewCell = [tableView dequeueReusableCellWithIdentifier:[RecentsInvitesTableViewCell defaultReuseIdentifier]];
// bwi: fixes mismatched number of invites
tableViewCell.invitesCount = self.invitesCellDataArray.count;
tableViewCell.invitesCount = self.recentsListService.invitedRoomListData.counts.total.numberOfRooms;
return tableViewCell;
}