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

Don't overwrite the posted-reply FTN REPLY ID if it was provided by the client

parent d4692e0a
No related branches found
No related tags found
No related merge requests found
...@@ -1004,7 +1004,7 @@ while(client.socket.is_connected && !quit) { ...@@ -1004,7 +1004,7 @@ while(client.socket.is_connected && !quit) {
else else
hdr.attr&=~MSG_MODERATED; hdr.attr&=~MSG_MODERATED;
if(hdr.references) { if((!hdr.ftn_reply) && hdr.references) {
var replyto_hdr = msgbase.get_msg_header(hdr.references); var replyto_hdr = msgbase.get_msg_header(hdr.references);
if(replyto_hdr && replyto_hdr.ftn_msgid) if(replyto_hdr && replyto_hdr.ftn_msgid)
hdr.ftn_reply = replyto_hdr.ftn_msgid; hdr.ftn_reply = replyto_hdr.ftn_msgid;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment