Skip to content
Snippets Groups Projects
Commit 60e75edb authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Merge branch 'fix_blank_imap_body' into 'master'

Fix messages with blank bodies not showing up on iphone

See merge request !449
parents 834282be e0e1fc38
No related branches found
No related tags found
2 merge requests!455Update branch with changes from master,!449Fix messages with blank bodies not showing up on iphone
......@@ -247,8 +247,8 @@ function send_fetch_response(msgnum, fmat, uid)
function get_rfc822_text() {
if(rfc822.text==undefined)
rfc822.text=base.get_msg_body(msgnum, true, true, true);
if(rfc822.text==undefined)
rfc822.text='';
if(rfc822.text === "" || rfc822.text==undefined)
rfc822.text='No body here';
}
function get_rfc822() {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment