mirror of
https://gitlab.linphone.org/BC/public/linphone-desktop.git
synced 2026-04-17 11:58:27 +00:00
fix uri between quotes in rich texts #LINQT-2474
This commit is contained in:
parent
2817e48a68
commit
a5d5fb1a20
1 changed files with 3 additions and 3 deletions
|
|
@ -163,9 +163,9 @@ QString ToolModel::encodeTextToQmlRichFormat(const QString &text,
|
|||
.second
|
||||
// .replace('&', "&")
|
||||
.replace('<', "\u2063<")
|
||||
.replace('\n', "<br>");
|
||||
// .replace('>', "\u2063>")
|
||||
// .replace('"', """)
|
||||
.replace('\n', "<br>")
|
||||
// .replace('>', "\u2063>")
|
||||
.replace('"', """);
|
||||
// .replace('\'', "'");
|
||||
if (!iriParsed[i].first) {
|
||||
if (lastWasUrl) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue