diff --git a/linphone-app/src/components/chat-room/ChatRoomProxyModel.cpp b/linphone-app/src/components/chat-room/ChatRoomProxyModel.cpp index 6348199fd..47c7b8c5e 100644 --- a/linphone-app/src/components/chat-room/ChatRoomProxyModel.cpp +++ b/linphone-app/src/components/chat-room/ChatRoomProxyModel.cpp @@ -103,6 +103,7 @@ void ChatRoomProxyModel::sendMessage(const QString &text){ QString trim = text.trimmed(); if (mChatRoomModel){ trim.replace(QChar::LineSeparator, QChar::LineFeed);// U+2028 is not recognized on Android app. + trim.replace(QChar::ParagraphSeparator, QChar::LineFeed);// U+2029 is not recognized on Android app. mChatRoomModel->sendMessage(trim); } }