aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--room.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/room.cpp b/room.cpp
index 65761856..68762a8a 100644
--- a/room.cpp
+++ b/room.cpp
@@ -563,7 +563,7 @@ static void linkifyUrls(QString& htmlEscapedText)
htmlEscapedText.replace(EmailAddressRegExp,
QStringLiteral(R"(<a href="mailto:\2">\1\2</a>)"));
htmlEscapedText.replace(FullUrlRegExp,
- QStringLiteral(R"(<a href="\1">\1</a>")"));
+ QStringLiteral(R"(<a href="\1">\1</a>)"));
}
QString Room::prettyPrint(const QString& plainText) const