Update after review

This commit is contained in:
Gil Eluard
2021-04-08 15:59:53 +02:00
parent 1aa20c462d
commit 773e72e9f5
3 changed files with 31 additions and 14 deletions
@@ -302,7 +302,8 @@ const CGFloat kTypingCellHeight = 24;
{
if (indexPath.row == self.typingCellIndex)
{
RoomTypingBubbleCell *cell = [tableView dequeueReusableCellWithIdentifier:RoomTypingBubbleCell.cellIdentifier forIndexPath:indexPath];
RoomTypingBubbleCell *cell = [tableView dequeueReusableCellWithIdentifier:RoomTypingBubbleCell.defaultReuseIdentifier forIndexPath:indexPath];
[cell updateWithTheme:ThemeService.shared.theme];
[cell updateTypingUsers:_currentTypingUsers mediaManager:self.mxSession.mediaManager];
return cell;
}