Skip to content

Commit eede87f

Browse files
committed
email_lib: fix a lost space in IMAP BODYSTRUCTURE response
Fixes: gromox-2.38-113-g0e90c121c References: DESK-2949
1 parent 51024bf commit eede87f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/email/mjson.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ static int mjson_fetch_mime_structure(mjson_io &io, const MJSON_MIME *pmime,
344344
buf += " NIL";
345345
}
346346
buf += pmime->cid.size() > 0 && str_isasciipr(pmime->cid.c_str()) ?
347-
"\"" + mjson_add_backslash(pmime->cid.c_str()) + "\"" :
347+
" \"" + mjson_add_backslash(pmime->cid.c_str()) + "\"" :
348348
" NIL";
349349

350350
/* body description */

0 commit comments

Comments
 (0)