Update the room description in the rooms list in case of live broadcast (incoming or outgoing) (#7160)

This commit is contained in:
Yoan Pintas
2022-12-19 19:26:55 +01:00
committed by GitHub
parent 5d1b05e961
commit 79e9f8ee40
17 changed files with 119 additions and 10 deletions
@@ -80,10 +80,7 @@
// Manage lastEventAttributedTextMessage optional property
if (!roomCellData.roomSummary.spaceChildInfo && [roomCellData respondsToSelector:@selector(lastEventAttributedTextMessage)])
{
// Force the default text color for the last message (cancel highlighted message color)
NSMutableAttributedString *lastEventDescription = [[NSMutableAttributedString alloc] initWithAttributedString:roomCellData.lastEventAttributedTextMessage];
[lastEventDescription addAttribute:NSForegroundColorAttributeName value:ThemeService.shared.theme.textSecondaryColor range:NSMakeRange(0, lastEventDescription.length)];
self.lastEventDescription.attributedText = lastEventDescription;
self.lastEventDescription.attributedText = roomCellData.lastEventAttributedTextMessage;
}
else
{