MESSENGER-6173 fix room creation status events not showing

This commit is contained in:
JanNiklas Grabowski
2024-06-26 16:32:01 +02:00
parent 7a1db7a579
commit 433823a343
2 changed files with 16 additions and 9 deletions
@@ -396,14 +396,16 @@ NSString *const URLPreviewDidUpdateNotification = @"URLPreviewDidUpdateNotificat
break;
// bwi #5575 ACL events and membership events should be displayed (and could be filtered later)
// this does not work at the moment but i'll leave it commented out for later reevaluation
// case RoomBubbleCellDataTagACL:
// case RoomBubbleCellDataTagRoomCreateConfiguration:
// if (!self.collapsedAttributedTextMessage) {
// hasNoDisplay = NO;
// } else {
// hasNoDisplay = [super hasNoDisplay];
// }
// break;
case RoomBubbleCellDataTagACL:
hasNoDisplay = NO;
break;
case RoomBubbleCellDataTagRoomCreateConfiguration:
if (!self.collapsedAttributedTextMessage) {
hasNoDisplay = NO;
} else {
hasNoDisplay = [super hasNoDisplay];
}
break;
default:
hasNoDisplay = [super hasNoDisplay];
break;