From 164de9c21c54a760680f141461f8849713d7cc3a Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Fri, 31 Mar 2023 01:29:18 +0200 Subject: [PATCH] Allow for # in fragments because some clients send matrix.to links like that --- src/Config.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Config.h b/src/Config.h index a129321f..02761435 100644 --- a/src/Config.h +++ b/src/Config.h @@ -61,7 +61,9 @@ inline const QRegularExpression url_regex( general_unicode + ")*))"; const auto query = R"(((?:[a-zA-Z0-9\-._~!$&'*+,;=:@/?\\{}]|)" + pct_enc + R"(|\((?-1)\)|\[(?-1)\]|)" + general_unicode + ")*)"; - const auto &fragment = query; + // explicitly allow # in fragments because of matrix.to urls generated by some clients... + const auto fragment = R"(((?:[a-zA-Z0-9\-._~!$&'*+,;=:@/?\\{}#]|)" + pct_enc + + R"(|\((?-1)\)|\[(?-1)\]|)" + general_unicode + ")*)"; return R"((?()" + protocol + "://" + "(?:" + userinfo + "@)?" + host + "(?::[0-9]+)?" + path + "?"