mirror of
https://github.com/moparisthebest/hexchat
synced 2024-11-29 12:42:16 -05:00
parent
aff9fb7945
commit
cd1155b83c
@ -155,6 +155,7 @@ void
|
|||||||
inbound_privmsg (server *serv, char *from, char *ip, char *text, int id)
|
inbound_privmsg (server *serv, char *from, char *ip, char *text, int id)
|
||||||
{
|
{
|
||||||
session *sess;
|
session *sess;
|
||||||
|
struct User *user;
|
||||||
char idtext[64];
|
char idtext[64];
|
||||||
|
|
||||||
sess = find_dialog (serv, from);
|
sess = find_dialog (serv, from);
|
||||||
@ -197,6 +198,10 @@ inbound_privmsg (server *serv, char *from, char *ip, char *text, int id)
|
|||||||
EMIT_SIGNAL (XP_TE_PRIVMSG, sess, from, text, idtext, NULL, 0);
|
EMIT_SIGNAL (XP_TE_PRIVMSG, sess, from, text, idtext, NULL, 0);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
user = userlist_find (sess, from);
|
||||||
|
if (user)
|
||||||
|
user->lasttalk = time (0);
|
||||||
|
|
||||||
if (sess->type == SESS_DIALOG)
|
if (sess->type == SESS_DIALOG)
|
||||||
EMIT_SIGNAL (XP_TE_DPRIVMSG, sess, from, text, idtext, NULL, 0);
|
EMIT_SIGNAL (XP_TE_DPRIVMSG, sess, from, text, idtext, NULL, 0);
|
||||||
|
Loading…
Reference in New Issue
Block a user