diff options
author | Alexey Andreyev <aa13q@ya.ru> | 2019-11-30 03:13:23 +0300 |
---|---|---|
committer | Alexey Andreyev <aa13q@ya.ru> | 2019-11-30 03:13:23 +0300 |
commit | 4be8a673b4ad2f1caa0e34b53ed3b12e750cf569 (patch) | |
tree | 734437c7965ce26bc8f68bdbca27ed93bc98181f | |
parent | 5937127b73a82fc86f6546397373ce9dbaf4e560 (diff) | |
download | libquotient-4be8a673b4ad2f1caa0e34b53ed3b12e750cf569.tar.gz libquotient-4be8a673b4ad2f1caa0e34b53ed3b12e750cf569.zip |
Fix room highlighting for names with hashtag
Fixes #359
-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 041a8aba..9f4ac85f 100644 --- a/lib/util.cpp +++ b/lib/util.cpp @@ -56,7 +56,7 @@ void Quotient::linkifyUrls(QString& htmlEscapedText) // https://matrix.org/docs/spec/appendices.html#identifier-grammar static const QRegularExpression MxIdRegExp( QStringLiteral( - R"((^|[^<>/])([!#@][-a-z0-9_=/.]{1,252}:(?:\w|\.|-)+\.\w+(?::\d{1,5})?))"), + R"((^|[^<>/])([!#@][-a-z0-9_=#/.]{1,252}:(?:\w|\.|-)+\.\w+(?::\d{1,5})?))"), RegExpOptions); // NOTE: htmlEscapedText is already HTML-escaped! No literal <,>,&," |