Skip to content
Snippets Groups Projects
Commit 4e06d83e authored by rswindell's avatar rswindell
Browse files

Bugfix: get_msg_body() was stripping all blank lines.

parent a6173bdc
No related branches found
No related tags found
No related merge requests found
......@@ -51,7 +51,7 @@ function get_msg_body(msgtxt)
var hdr = true;
for(i in msgtxt) {
if(msgtxt[i].length==0) { // Header terminator
if(hdr && msgtxt[i].length==0) { // Header terminator
hdr = false;
continue;
}
......
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