Merge pull request #6627 from vector-im/gil/6625-App_Layout-limited_number_of_invites

App Layout: number of invites is limited to 10 in the All Chats screen
This commit is contained in:
Gil Eluard 2022-08-25 09:23:36 +02:00 committed by GitHub
commit b4693c5460
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -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;
}

1
changelog.d/6625.bugfix Normal file
View file

@ -0,0 +1 @@
App Layout: fixed limited number of invites in the All Chats screen