[Commits] [SCM] claws branch, gtk2, updated. 3.20.0-75-g228900acf
paul at claws-mail.org
paul at claws-mail.org
Wed Apr 10 13:08:48 UTC 2024
The branch, gtk2 has been updated
via 228900acfe0f54246883ced10fc177ba42e225f3 (commit)
from d6576d51970c3e6af5d1824f7c088a6b8ed1033e (commit)
Summary of changes:
src/common/utils.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
- Log -----------------------------------------------------------------
commit 228900acfe0f54246883ced10fc177ba42e225f3
Author: Paul <paul at claws-mail.org>
Date: Wed Apr 10 14:06:06 2024 +0100
fix bug 4796, 'URL with wide character doesn't work'
diff --git a/src/common/utils.c b/src/common/utils.c
index 8181d5f15..a9aa2cdfa 100644
--- a/src/common/utils.c
+++ b/src/common/utils.c
@@ -1372,7 +1372,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 (strchr("<>\"", *p))
break;
}
return p - str;
-----------------------------------------------------------------------
hooks/post-receive
--
Claws Mail
More information about the Commits
mailing list