talons

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

commit 316197d1d98873e429599148f15378f38576cde8
parent 69bb4836e45cdda6993ff0afc71b6a0cddf0f780
Author: Paul <paul@claws-mail.org>
Date:   Wed, 24 Jul 2024 11:18:28 +0100

fix bug 4819, 'Text wrapping broken when text contains an URL'

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 @@ -1372,7 +1372,7 @@ gint get_uri_len(const gchar *str) if (is_uri_string(str)) { for (p = str; *p != '\0'; p++) { - if (strchr("<>\"", *p)) + if (strchr("<>\" ", *p)) break; } return p - str;