aboutsummaryrefslogtreecommitdiffstats
path: root/irc_channel.c
diff options
context:
space:
mode:
Diffstat (limited to 'irc_channel.c')
-rw-r--r--irc_channel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/irc_channel.c b/irc_channel.c
index 133a6de9..da6abbe4 100644
--- a/irc_channel.c
+++ b/irc_channel.c
@@ -374,7 +374,7 @@ static gboolean control_channel_privmsg( irc_channel_t *ic, const char *msg )
iu = irc_user_by_name( irc, to );
if( iu && iu->f->privmsg )
{
- iu->flags &= ~IRC_USER_PRIVATE;
+ iu->last_channel = ic;
iu->f->privmsg( iu, s );
}
else