You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
case '!topgames':
client.send('s', 'chat', nick, 'Top Games :');
db.query('SELECT player, games FROM stats ORDER BY games DESC LIMIT 13', function(err, rows) {
if (err) throw err;
for (var i = 0; i < rows.length; i++) {
client.send('s', 'chat', nick, i+1 + '. ' + rows[i].player + ' : ' + rows[i].games);
};
});
break;
its always include : in first text
its the debug message
26 Oct 15:26:22 - SEND: s chat mushi :1. miracle- : 13891
the message should 1. miracle- : 13891
not :1. miracle- : 13891
how/where i can to remote that : ?
The text was updated successfully, but these errors were encountered:
anonprophet
changed the title
client.send() always include :
client.send() always include : in first text
Oct 26, 2015
@anonprophet we are not your personal StackOverflow nor is this a issue what you are seeing is a log of what was sent to the server, which is composed of a : character.
What the SERVER sent to the user was 1. miracle- : 13891.
@anonprophet This is only cosmetic to the debug messages, you are receiving the raw output as expected, you should be fine, but we cannot help if its not a node-irc issue. Also do you mind closing your other issue #416 before opening a new one?
@moshmage, i second your motion to close, but i suggest that novice requests get treated with more guidance, this was an honest mistake as oppose to someone trying to offload work to someone else.
its always include
:
in first textits the debug message
the message should
1. miracle- : 13891
not
:1. miracle- : 13891
how/where i can to remote that
:
?The text was updated successfully, but these errors were encountered: