diff options
author | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-05-13 20:42:50 +0900 |
---|---|---|
committer | Kitsune Ral <Kitsune-Ral@users.sf.net> | 2019-05-13 21:44:25 +0900 |
commit | 3c253ed025246a34d849d14aac6feaee672d7e63 (patch) | |
tree | 14b1216af834d8a94dee265cef344016020a3389 /lib | |
parent | 346adee1810109f4b7b14298e55d29a44c076a66 (diff) | |
download | libquotient-3c253ed025246a34d849d14aac6feaee672d7e63.tar.gz libquotient-3c253ed025246a34d849d14aac6feaee672d7e63.zip |
linkifyUrls(): be more conservative in parsing serverparts
Closes #321.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/util.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.cpp b/lib/util.cpp index 0248e521..883db2ea 100644 --- a/lib/util.cpp +++ b/lib/util.cpp @@ -51,7 +51,7 @@ void QMatrixClient::linkifyUrls(QString& htmlEscapedText) // An interim liberal implementation of // https://matrix.org/docs/spec/appendices.html#identifier-grammar static const QRegularExpression MxIdRegExp(QStringLiteral( - R"((^|[^<>/])([!#@][-a-z0-9_=/.]{1,252}:[-.a-z0-9]+))" + R"((^|[^<>/])([!#@][-a-z0-9_=/.]{1,252}:(?:\w|\.|-)+\.\w+(?::\d{1,5})?))" ), RegExpOptions); // NOTE: htmlEscapedText is already HTML-escaped! No literal <,>,&," |