App Layout: number of invites is limited to 10 in the All Chats screen

- fixed
This commit is contained in:
Gil Eluard
2022-08-24 20:55:38 +02:00
parent a83a8f3360
commit 4a61e72661
2 changed files with 2 additions and 1 deletions
@@ -1101,7 +1101,7 @@ NSString *const kRecentsDataSourceTapOnDirectoryServerChange = @"kRecentsDataSou
{
RecentsInvitesTableViewCell *tableViewCell = [tableView dequeueReusableCellWithIdentifier:[RecentsInvitesTableViewCell defaultReuseIdentifier]];
tableViewCell.invitesCount = self.recentsListService.invitedRoomListData.counts.numberOfRooms;
tableViewCell.invitesCount = self.recentsListService.invitedRoomListData.counts.total.numberOfRooms;
return tableViewCell;
}