commit c1f04d021a06c8b666110237ae91fea0cd77b912
parent 1fbc3b57d6551c76c367372214797d752a84313d
Author: Paul <paul@claws-mail.org>
Date: Fri, 2 May 2025 12:02:32 +0100
fix bug 4764, 'Wrapped UTF8 encoded subject line displayed with nonexistent quotation marks'
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/news.c b/src/news.c
@@ -890,7 +890,7 @@ static MsgInfo *news_parse_xover(struct newsnntp_xover_resp_item *item)
msginfo->from = conv_unmime_header(item->ovr_author, NULL, TRUE);
msginfo->fromname = procheader_get_fromname(msginfo->from);
- msginfo->subject = conv_unmime_header(item->ovr_subject, NULL, TRUE);
+ msginfo->subject = conv_unmime_header(item->ovr_subject, NULL, FALSE);
remove_return(msginfo->from);
remove_return(msginfo->fromname);