Invites should not automatically highlight you.

This commit is contained in:
creesch 2019-02-05 11:03:54 +01:00
parent 7840b56690
commit 39071aff50

View file

@ -12,14 +12,16 @@ module.exports = function(irc, network) {
chan = network.channels[0];
}
const invitedYou = data.invited === irc.user.nick;
const msg = new Msg({
type: Msg.Type.INVITE,
time: data.time,
from: chan.getUser(data.nick),
target: chan.getUser(data.invited),
channel: data.channel,
highlight: true,
invitedYou: data.invited === irc.user.nick,
highlight: invitedYou,
invitedYou: invitedYou,
});
chan.pushMessage(client, msg);
});