[Commits] [SCM] claws branch, gtk3, updated. 3.99.0-105-g88f72a321
paul at claws-mail.org
paul at claws-mail.org
Thu May 27 16:35:47 CEST 2021
The branch, gtk3 has been updated
via 88f72a3216b336abe186daf5a0d8821e87eb996e (commit)
from bb17a3e4c4b6c5c9b89c507553150ec5db0bb3de (commit)
Summary of changes:
src/common/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 88f72a3216b336abe186daf5a0d8821e87eb996e
Author: paul <paul at claws-mail.org>
Date: Thu May 27 15:35:17 2021 +0100
fix bug 4483, 'cannot open certain links anymore'
allow parentheses in links
diff --git a/src/common/utils.c b/src/common/utils.c
index e7b80ab50..b8cf669ee 100644
--- 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;
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list