projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b9c9cce
)
Fixed bug where default quit message wouldn't display
author
Jack Allnutt
<m2ys4u@Gmail.com>
Sun, 17 Jul 2011 16:17:23 +0000
(17:17 +0100)
committer
Jack Allnutt
<m2ys4u@Gmail.com>
Sun, 17 Jul 2011 16:17:23 +0000
(17:17 +0100)
node/kiwi.js
patch
|
blob
|
blame
|
history
diff --git
a/node/kiwi.js
b/node/kiwi.js
index 7d6263b2fa4fa13f95535bde93f44bca7116ca39..d5a9a3d34c3d5b6ab5d18605318ffa3a4c8a2bf3 100644
(file)
--- a/
node/kiwi.js
+++ b/
node/kiwi.js
@@
-348,7
+348,7
@@
io.sockets.on('connection', function (websocket) {
});
websocket.on('disconnect', function () {
if ((!websocket.sentQUIT) && (websocket.ircSocket)) {
- websocket.ircSocket.end('QUIT :' + config.quit_message
s
+ '\r\n');
+ websocket.ircSocket.end('QUIT :' + config.quit_message + '\r\n');
websocket.sentQUIT = true;
websocket.ircSocket.destroySoon();
}