aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-18 17:37:43 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2018-01-18 17:37:43 +0900
commit959b2d023d37713cefaee049b09e09507107e4b0 (patch)
tree954042449b647c928e781dc64b561245ef434bb5
parentac944a40f12c4aff06af8c01fa36c63643159919 (diff)
downloadlibquotient-959b2d023d37713cefaee049b09e09507107e4b0.tar.gz
libquotient-959b2d023d37713cefaee049b09e09507107e4b0.zip
Typo fix
-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