RoomBubbleCellData: Fix quote for bubbles.

This commit is contained in:
SBiOSoftWhare
2022-02-08 11:17:06 +01:00
parent f466aea377
commit fc2b565435
@@ -489,6 +489,13 @@ NSString *const URLPreviewDidUpdateNotification = @"URLPreviewDidUpdateNotificat
}
}
// With bubbles the text is truncated with quote messages containing vertical border view
// Add horizontal space to fix the issue
if (self.displayFix & MXKRoomBubbleComponentDisplayFixHtmlBlockquote)
{
[currentAttributedTextMsgWithoutVertSpace appendString:@" "];
}
self.currentAttributedTextMsg = currentAttributedTextMsg;
self.currentAttributedTextMsgWithoutVertSpace = currentAttributedTextMsgWithoutVertSpace;