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

Log a message when sending a telegram

Clear console abort flag after prompting for destination user
parent e5c85246
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -91,6 +91,7 @@ while(bbs.online && !(console.aborted)) {
console.aborted = false;
break;
}
log("Sending Telegram to: " + str);
var node_num = parseInt(str, 10);
var user_num;
if(node_num > 0) {
......@@ -110,6 +111,7 @@ while(bbs.online && !(console.aborted)) {
user_num = bbs.finduser(str);
if(!user_num) {
write(bbs.text(UnknownUser));
console.aborted = false;
break;
}
}
......
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