Do not count your own messages as unread

This commit is contained in:
Pavel Djundik 2016-04-26 13:10:17 +03:00
parent a276e5714a
commit 80ac72709d
2 changed files with 5 additions and 1 deletions

View file

@ -760,6 +760,10 @@ $(function() {
});
chat.on("msg", ".messages", function(e, target, msg) {
if (msg.self) {
return;
}
var button = sidebar.find(".chan[data-target='" + target + "']");
var isQuery = button.hasClass("query");
if (msg.type === "invite" || msg.highlight || isQuery || (options.notifyAllMessages && msg.type === "message")) {

View file

@ -64,7 +64,7 @@ module.exports = function(irc, network) {
return (w.replace(/^@/, "").toLowerCase().indexOf(irc.user.nick.toLowerCase()) === 0);
});
if (chan.id !== client.activeChannel) {
if (!self && chan.id !== client.activeChannel) {
chan.unread++;
if (highlight) {