projects
/
KiwiIRC.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
beafa58
)
Server: NOTICE sending correct parameters
author
Darren
<darren@Darrens-MacBook-Pro.local>
Mon, 11 Mar 2013 18:10:31 +0000
(18:10 +0000)
committer
Darren
<darren@Darrens-MacBook-Pro.local>
Mon, 11 Mar 2013 18:10:31 +0000
(18:10 +0000)
server/irc/channel.js
patch
|
blob
|
blame
|
history
diff --git
a/server/irc/channel.js
b/server/irc/channel.js
index dc7c18055eadb3e14530e72da9613ee4b01679fc..819e06c5a532546e606acd016952563641a5a52b 100644
(file)
--- a/
server/irc/channel.js
+++ b/
server/irc/channel.js
@@
-101,12
+101,12
@@
function onMsg(event) {
function onNotice(event) {
- this.irc_connection.clientEvent('
msg
', {
+ this.irc_connection.clientEvent('
notice
', {
nick: event.nick,
ident: event.ident,
hostname: event.hostname,
-
channel: this.name
,
- msg: event.
trailin
g
+
target: event.target
,
+ msg: event.
ms
g
});
};