From 09d08678073bb8096ac73c2a6c4231b2087e041b Mon Sep 17 00:00:00 2001 From: Danmei Chen Date: Fri, 30 Jul 2021 11:45:29 +0200 Subject: [PATCH] fix text display error with video in the same chat --- Classes/LinphoneUI/UIChatBubbleTextCell.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/LinphoneUI/UIChatBubbleTextCell.m b/Classes/LinphoneUI/UIChatBubbleTextCell.m index 808cb20b1..e5271015c 100644 --- a/Classes/LinphoneUI/UIChatBubbleTextCell.m +++ b/Classes/LinphoneUI/UIChatBubbleTextCell.m @@ -167,7 +167,7 @@ return; } - if (_messageText && ![LinphoneManager getMessageAppDataForKey:@"localvideo" inMessage:_message]) { + if (_messageText) { [_messageText setHidden:FALSE]; /* We need to use an attributed string here so that data detector don't mess * with the text style. See http://stackoverflow.com/a/20669356 */