commit 88f72a3216b336abe186daf5a0d8821e87eb996e
parent bb17a3e4c4b6c5c9b89c507553150ec5db0bb3de
Author: paul <paul@claws-mail.org>
Date: Thu, 27 May 2021 15:35:17 +0100
fix bug 4483, 'cannot open certain links anymore'
allow parentheses in links
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/common/utils.c b/src/common/utils.c
@@ -1350,7 +1350,7 @@ gint get_uri_len(const gchar *str)
if (is_uri_string(str)) {
for (p = str; *p != '\0'; p++) {
- if (!g_ascii_isgraph(*p) || strchr("()<>\"", *p))
+ if (!g_ascii_isgraph(*p) || strchr("<>\"", *p))
break;
}
return p - str;