Make sure that apostrophes are unescaped when visualising messages

Title

BUG: 488325
This commit is contained in:
James Graham
2024-07-23 17:27:00 +00:00
parent 9df4cd6f13
commit 11475259a1
2 changed files with 2 additions and 0 deletions

View File

@@ -614,6 +614,7 @@ QString TextHandler::unescapeHtml(QString stringIn)
stringIn.replace(QStringLiteral(">"), QStringLiteral(">"));
stringIn.replace(QStringLiteral("&"), QStringLiteral("&"));
stringIn.replace(QStringLiteral("""), QStringLiteral("\""));
stringIn.replace(QStringLiteral("'"), QStringLiteral("'"));
return stringIn;
}