aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKitsune Ral <Kitsune-Ral@users.sf.net>2019-07-02 08:53:25 +0900
committerKitsune Ral <Kitsune-Ral@users.sf.net>2019-07-02 08:53:25 +0900
commitddc5a60184972e1449191ce77561b875a145a665 (patch)
tree314af2370e9f8e6f0fb007d884050304794b8b79
parent5602c38fe32377081c9f3dafb3f77666948053c5 (diff)
downloadlibquotient-ddc5a60184972e1449191ce77561b875a145a665.tar.gz
libquotient-ddc5a60184972e1449191ce77561b875a145a665.zip
linkifyUrls: support matrix: scheme and relative URLs
-rw-r--r--lib/util.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util.cpp b/lib/util.cpp
index 01d4e77b..88cba959 100644
--- a/lib/util.cpp
+++ b/lib/util.cpp
@@ -45,7 +45,7 @@ void QMatrixClient::linkifyUrls(QString& htmlEscapedText)
// <, >, ' or ", and ends before whitespaces, <, >, ', ", ], !, ), :,
// comma or dot
static const QRegularExpression FullUrlRegExp(QStringLiteral(
- R"(\b((www\.(?!\.)(?!(\w|\.|-)+@)|(https?|ftp|magnet)://)(&(?![lg]t;)|[^&\s<>'"])+(&(?![lg]t;)|[^&!,.\s<>'"\]):])))"
+ R"(\b((www\.(?!\.)(?!(\w|\.|-)+@)|(https?|ftp|magnet|matrix):(//)?)(&(?![lg]t;)|[^&\s<>'"])+(&(?![lg]t;)|[^&!,.\s<>'"\]):])))"
), RegExpOptions);
// email address:
// [word chars, dots or dashes]@[word chars, dots or dashes].[word chars]