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

Add comment as to why the body is being replaced.

parent 6ab2d322
Branches
Tags
No related merge requests found
......@@ -250,6 +250,9 @@ 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);
// At least some iPhones in 2024 would not display
// zero-length messages. Convert them to a single
// space instead.
if(rfc822.text === "" || rfc822.text==undefined)
rfc822.text=' ';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment