totallymike / ircnode

Extensible IRC bot written with node.js
https://github.com/totallymike/ircnode/wiki
MIT License
4 stars 2 forks source link

made irc.privmsg send multiple lines one by one #46

Closed sigv closed 12 years ago

sigv commented 12 years ago

With the current code, Hello\nQUIT will exit would send 'Hello' to the target and then send a QUIT with message 'will exit'. The new code would send 'Hello' and then 'QUIT will exit' to the target instead.

sigv commented 12 years ago

Merging into master as the issue is for a security fix.