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

Fix apparent bug in set_seen_flag(): wasn't passing the message header to

base.put_msg_header(). I just happened to notice this while making the last
fix committed. I'm guessing this particular code path hasn't been tested (?)
parent 31cef714
No related branches found
No related tags found
No related merge requests found
......@@ -278,7 +278,7 @@ function send_fetch_response(msgnum, fmat, uid)
get_header();
if(!(hdr.attr & MSG_READ)) {
hdr.attr |= MSG_READ;
base.put_msg_header(msgnum);
base.put_msg_header(msgnum, hdr);
index=read_index(base);
hdr=base.get_msg_header(msgnum, /* expand_fields: */false);
if(hdr.attr & MSG_READ)
......
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