diff --git a/NextcloudTalk/RoomSearchTableViewController.m b/NextcloudTalk/RoomSearchTableViewController.m index 451d23586..98f49492d 100644 --- a/NextcloudTalk/RoomSearchTableViewController.m +++ b/NextcloudTalk/RoomSearchTableViewController.m @@ -315,7 +315,14 @@ - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(N } NSDate *date = [[NSDate alloc] initWithTimeIntervalSince1970:room.lastActivity]; cell.dateLabel.text = [NCUtils readableTimeOrDateFromDate:date]; - + + // Open conversations + if (searchSection == RoomSearchSectionListable) { + cell.titleOnly = NO; + cell.subtitleLabel.text = room.roomDescription; + cell.dateLabel.text = @""; + } + // Set unread messages if ([[NCDatabaseManager sharedInstance] serverHasTalkCapability:kCapabilityDirectMentionFlag]) { BOOL mentioned = room.unreadMentionDirect || room.type == kNCRoomTypeOneToOne || room.type == kNCRoomTypeFormerOneToOne;