Always send notices that are not targeted at us into the server window

This commit is contained in:
Pavel Djundik 2016-03-20 18:46:08 +02:00 committed by Maxime Poulin
parent 4a7fc0544e
commit 92cc130e2b
1 changed files with 22 additions and 9 deletions

View File

@ -7,6 +7,12 @@ module.exports = function(irc, network) {
var config = Helper.getConfig();
irc.on("notice", function(data) {
// Some servers send notices without any nickname
if (!data.nick) {
data.from_server = true;
data.nick = network.host;
}
data.type = Msg.Type.NOTICE;
handleMessage(data);
});
@ -27,14 +33,20 @@ module.exports = function(irc, network) {
chan = network.channels[0];
} else {
var target = data.target;
var targetedAtUser = false;
// If the message is targeted at us, use sender as target instead
if (target.toLowerCase() === irc.user.nick.toLowerCase()) {
targetedAtUser = true;
target = data.nick;
}
var chan = network.getChannel(target);
if (typeof chan === "undefined") {
// Send notices that are not targeted at us into the server window
if (data.type === Msg.Type.NOTICE && !targetedAtUser) {
chan = network.channels[0];
} else {
chan = new Chan({
type: Chan.Type.QUERY,
name: target
@ -46,6 +58,7 @@ module.exports = function(irc, network) {
});
}
}
}
var self = data.nick === irc.user.nick;