Changeset 917a83e


Ignore:
Timestamp:
2010-07-03T20:38:53Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
0bd948e
Parents:
bc4b469
Message:

Use irc_send_msg instead of irc_send_msg_raw() to echo messages to self,
to make sure CTCP ACTIONs work. Not important, just more correct.

Other CTCPs sent to oneself are dropped, but why CTCP yourself anyway?

File:
1 edited

Legend:

Unmodified
Added
Removed
  • irc_user.c

    rbc4b469 r917a83e  
    243243static gboolean self_privmsg( irc_user_t *iu, const char *msg )
    244244{
    245         irc_send_msg_raw( iu, "PRIVMSG", iu->nick, msg );
     245        irc_send_msg( iu, "PRIVMSG", iu->nick, msg, NULL );
    246246       
    247247        return TRUE;
Note: See TracChangeset for help on using the changeset viewer.