From a0707688fc9d3454830b731d5519611d403ff19b Mon Sep 17 00:00:00 2001 From: Zhixin Lu Date: Fri, 20 Jan 2023 15:43:14 +0800 Subject: [PATCH] ECANDR-7149: [Thread] Thread title has more space after replying one by one. Don't add a space between a quoted word and a unquoted word. --- src/core/basetypes/MCString.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/basetypes/MCString.cpp b/src/core/basetypes/MCString.cpp index 8c6011b75..2d835d81e 100644 --- a/src/core/basetypes/MCString.cpp +++ b/src/core/basetypes/MCString.cpp @@ -361,7 +361,8 @@ static char * etpan_make_quoted_printable(const char * display_charset, } if (* end != '\0') { - mmap_string_append_c(mmapstr, ' '); + // modified by Edison. (Jira: ECANDR-7149) + // mmap_string_append_c(mmapstr, ' '); mmap_string_append_len(mmapstr, end, cur - end); } }