1
0
mirror of https://github.com/moparisthebest/hexchat synced 2024-11-25 10:42:18 -05:00

Don't mark own messages as new message

This commit is contained in:
TingPing 2015-01-28 20:46:45 -05:00
parent d8759a7982
commit 1de6f68315

View File

@ -494,9 +494,17 @@ inbound_chanmsg (server *serv, session *sess, char *chan, char *from,
}
if (sess != current_tab)
{
if (fromme)
{
sess->msg_said = FALSE;
sess->new_data = TRUE;
}
else
{
sess->msg_said = TRUE;
sess->new_data = FALSE;
}
lastact_update (sess);
}