diff options
Diffstat (limited to 'src/common/inbound.c')
-rw-r--r-- | src/common/inbound.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/common/inbound.c b/src/common/inbound.c index 7b4c67e8..c86caf24 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -302,6 +302,7 @@ is_hilight (char *from, char *text, session *sess, server *serv) g_free (text); if (sess != current_tab) sess->nick_said = TRUE; + lastact_update (sess); fe_set_hilight (sess); return 1; } @@ -364,6 +365,7 @@ inbound_action (session *sess, char *chan, char *from, char *ip, char *text, int sess->msg_said = TRUE; sess->new_data = FALSE; } + lastact_update (sess); } user = userlist_find (sess, from); @@ -421,6 +423,7 @@ inbound_chanmsg (server *serv, session *sess, char *chan, char *from, char *text { sess->msg_said = TRUE; sess->new_data = FALSE; + lastact_update (sess); } user = userlist_find (sess, from); |