Skip to content
Snippets Groups Projects
Commit e0e1fc38 authored by Nigel Reed's avatar Nigel Reed Committed by Rob Swindell
Browse files

Fix messages with blank bodies not showing up on iphone

parent 834282be
Branches
Tags
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.
Please register or to comment