diff --git a/CHANGELOG.md b/CHANGELOG.md index f5cffeaee..2b357a388 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Empty route can now be set in account settings. - Network remote file can be used in chat attachment on Windows. - Some crashs. +- Question mark before '<' and '>' - Update SDK to 5.3.26. ### Added diff --git a/linphone-app/src/utils/Utils.cpp b/linphone-app/src/utils/Utils.cpp index 69f36ff20..78673581f 100644 --- a/linphone-app/src/utils/Utils.cpp +++ b/linphone-app/src/utils/Utils.cpp @@ -833,8 +833,8 @@ QString Utils::encodeTextToQmlRichFormat(const QString& text, const QVariantMap& for(int i = 0 ; i < iriParsed.size() ; ++i){ QString iri = iriParsed[i].second.replace('&', "&") - .replace('<', "\u2063<") - .replace('>', "\u2063>") + .replace('<', "⁣<") + .replace('>', "⁣>") .replace('"', """) .replace('\'', "'"); if(!iriParsed[i].first){