MESSENGER-5570 acl status events up to collapsability

This commit is contained in:
Frank Rotermund
2024-02-21 16:50:20 +01:00
parent f9f3b69763
commit 4aaf86e41e
9 changed files with 90 additions and 10 deletions
+2 -2
View File
@@ -3300,7 +3300,7 @@ static CGSize kThreadListBarButtonItemImageSize;
{
cellIdentifier = bubbleData.isPaginationFirstBubble ? RoomTimelineCellIdentifierKeyVerificationConclusionWithPaginationTitle : RoomTimelineCellIdentifierKeyVerificationConclusion;
}
else if (bubbleData.tag == RoomBubbleCellDataTagMembership)
else if (bubbleData.tag == RoomBubbleCellDataTagMembership || bubbleData.tag == RoomBubbleCellDataTagACL)
{
if (bubbleData.collapsed)
{
@@ -3325,7 +3325,7 @@ static CGSize kThreadListBarButtonItemImageSize;
cellIdentifier = bubbleData.isPaginationFirstBubble ? RoomTimelineCellIdentifierMembershipWithPaginationTitle : RoomTimelineCellIdentifierMembership;
}
}
else if (bubbleData.tag == RoomBubbleCellDataTagRoomCreateConfiguration)
else if (bubbleData.tag == RoomBubbleCellDataTagRoomCreateConfiguration || bubbleData.tag == RoomBubbleCellDataTagRoomConfiguration)
{
cellIdentifier = bubbleData.isPaginationFirstBubble ? RoomTimelineCellIdentifierRoomCreationCollapsedWithPaginationTitle : RoomTimelineCellIdentifierRoomCreationCollapsed;
}