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

Clear screen after getting forward-to address

As pointed out by Keyop via irc, if the message has an attachment,
a comment is prompted for and since the "To:" prompt uses P_NOCRLF,
the first comment prompt was on the same line. So clear the screen, which
is what happens when the forwarded message has no attachment anyway.
parent 2c7f3bc6
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -1066,6 +1066,7 @@ function list_msgs(msgbase, list, current, preview, grp_name, sub_name)
console.clearline();
var dest = prompt("To", "", K_NOCRLF);
if(dest) {
console.clear();
if(!bbs.forward_msg(list[current], dest))
alert("failed");
}
......
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