mirror of
https://github.com/thelounge/thelounge
synced 2024-11-14 16:27:22 +00:00
parent
52a0552bc4
commit
63f4fc39c9
1 changed files with 6 additions and 0 deletions
|
@ -25,6 +25,12 @@ module.exports = function(irc, network) {
|
|||
handleMessage(data);
|
||||
});
|
||||
|
||||
irc.on("wallops", function(data) {
|
||||
data.from_server = true;
|
||||
data.type = Msg.Type.NOTICE;
|
||||
handleMessage(data);
|
||||
});
|
||||
|
||||
function handleMessage(data) {
|
||||
var highlight = false;
|
||||
var self = data.nick === irc.user.nick;
|
||||
|
|
Loading…
Reference in a new issue