Skip to content

Commit

Permalink
Merge pull request #6627 from vector-im/gil/6625-App_Layout-limited_n…
Browse files Browse the repository at this point in the history
…umber_of_invites

App Layout: number of invites is limited to 10 in the All Chats screen
  • Loading branch information
gileluard authored Aug 25, 2022
2 parents 873926d + e658778 commit b4693c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1101,7 +1101,7 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N
{
RecentsInvitesTableViewCell *tableViewCell = [tableView dequeueReusableCellWithIdentifier:[RecentsInvitesTableViewCell defaultReuseIdentifier]];

tableViewCell.invitesCount = self.recentsListService.invitedRoomListData.counts.numberOfRooms;
tableViewCell.invitesCount = self.recentsListService.invitedRoomListData.counts.total.numberOfRooms;

return tableViewCell;
}
Expand Down
1 change: 1 addition & 0 deletions changelog.d/6625.bugfix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
App Layout: fixed limited number of invites in the All Chats screen

0 comments on commit b4693c5

Please sign in to comment.