Merge branch 'develop' into doug/4479_media_size_selection

This commit is contained in:
Doug
2021-08-23 12:49:06 +01:00
20 changed files with 213 additions and 69 deletions
+8 -3
View File
@@ -2425,11 +2425,16 @@ const NSTimeInterval kResizeComposerAnimationDuration = .05;
}
else if (bubbleData.attachment.type == MXKAttachmentTypeVoiceMessage)
{
if (bubbleData.isPaginationFirstBubble) {
if (bubbleData.isPaginationFirstBubble)
{
cellViewClass = VoiceMessageWithPaginationTitleBubbleCell.class;
} else if (bubbleData.shouldHideSenderInformation) {
}
else if (bubbleData.shouldHideSenderInformation)
{
cellViewClass = VoiceMessageWithoutSenderInfoBubbleCell.class;
} else {
}
else
{
cellViewClass = VoiceMessageBubbleCell.class;
}
}