talons

Fork of Claws Mail https://www.claws-mail
Log | Files | Refs | README | LICENSE

commit 99b75b1559f14ec72f9941458ab2b809f5af3694
parent db3f1fad9cd9c56e2c9a56b99a48a9742f0b31ce
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:
Msrc/common/utils.c | 2+-
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;