mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-01-24 15:18:07 +00:00
Remove '?' before '<' and '>' because of UTF16
This commit is contained in:
parent
ef74c2cb47
commit
83caa0af63
2 changed files with 3 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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){
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue