mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-17 11:08:06 +00:00
Fix message bubble for text files
This commit is contained in:
parent
9a78e75722
commit
97bfdaab04
1 changed files with 1 additions and 1 deletions
|
|
@ -409,7 +409,7 @@ class ConversationViewModel: ObservableObject {
|
|||
|
||||
if eventLog.chatMessage != nil && !eventLog.chatMessage!.contents.isEmpty {
|
||||
eventLog.chatMessage!.contents.forEach { content in
|
||||
if content.isText {
|
||||
if content.isText && content.name == nil {
|
||||
contentText = content.utf8Text ?? ""
|
||||
} else if content.name != nil && !content.name!.isEmpty {
|
||||
if content.filePath == nil || content.filePath!.isEmpty {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue