projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
093c5b3
)
CTCP time response fix
author
Darren
<darren@darrenwhitlen.com>
Tue, 10 Sep 2013 16:35:03 +0000
(17:35 +0100)
committer
Darren
<darren@darrenwhitlen.com>
Tue, 10 Sep 2013 16:35:03 +0000
(17:35 +0100)
client/assets/src/models/network.js
patch
|
blob
|
blame
|
history
diff --git
a/client/assets/src/models/network.js
b/client/assets/src/models/network.js
index da6ed21c9385a648260a467c2def80a58453d2c1..5f773b57e2401d4fb4ce0635cf73c3fc6eb4aa36 100644
(file)
--- a/
client/assets/src/models/network.js
+++ b/
client/assets/src/models/network.js
@@
-409,7
+409,7
@@
// Reply to a TIME ctcp
if (event.msg.toUpperCase() === 'TIME') {
- this.gateway.ctcp(
null,
false, event.type, event.nick, (new Date()).toString());
+ this.gateway.ctcp(false, event.type, event.nick, (new Date()).toString());
}
}