[Commits] [SCM] claws branch, master, updated. 3.17.8-86-g99b75b155

paul at claws-mail.org paul at claws-mail.org
Thu May 27 16:36:46 CEST 2021


The branch, master has been updated
       via  99b75b1559f14ec72f9941458ab2b809f5af3694 (commit)
      from  db3f1fad9cd9c56e2c9a56b99a48a9742f0b31ce (commit)

Summary of changes:
 src/common/utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


- Log -----------------------------------------------------------------
commit 99b75b1559f14ec72f9941458ab2b809f5af3694
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