projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
51c925a
)
'connect' event correctly sent to client
author
Darren
<darren@darrenwhitlen.com>
Thu, 20 Sep 2012 19:16:11 +0000
(20:16 +0100)
committer
Darren
<darren@darrenwhitlen.com>
Thu, 20 Sep 2012 19:16:11 +0000
(20:16 +0100)
server/irc-commands.js
patch
|
blob
|
blame
|
history
diff --git
a/server/irc-commands.js
b/server/irc-commands.js
index b777d86c88387f4d810a9e8fbc7b20c4a75de836..09e16c62fcb331101dec961a6f1f745af9c5db5f 100755
(executable)
--- a/
server/irc-commands.js
+++ b/
server/irc-commands.js
@@
-65,7
+65,7
@@
var listeners = {
'RPL_WELCOME': function (command) {
var nick = command.params[0];
this.irc_connection.registered = true;
- this.client.send
KiwiCommand({server: this.con_num, command: 'connect'
, nick: nick});
+ this.client.send
IRCCommand('connect', {server: this.con_num
, nick: nick});
},
'RPL_ISUPPORT': function (command) {
var options, i, option, matches, j;