Skip to content
Snippets Groups Projects
Commit 6ab2d322 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Update fix in e0e1fc38

Instead of text with completely different meaning, change the "no body"
text to a single space.
parent 79a6d872
No related branches found
No related tags found
No related merge requests found
...@@ -251,7 +251,7 @@ function send_fetch_response(msgnum, fmat, uid) ...@@ -251,7 +251,7 @@ function send_fetch_response(msgnum, fmat, uid)
if(rfc822.text==undefined) if(rfc822.text==undefined)
rfc822.text=base.get_msg_body(msgnum, true, true, true); rfc822.text=base.get_msg_body(msgnum, true, true, true);
if(rfc822.text === "" || rfc822.text==undefined) if(rfc822.text === "" || rfc822.text==undefined)
rfc822.text='No body here'; rfc822.text=' ';
} }
function get_rfc822() { function get_rfc822() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment