diff options
author | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-09 10:48:56 +0100 |
---|---|---|
committer | Wilmer van der Gaast <wilmer@gaast.net> | 2010-05-09 10:48:56 +0100 |
commit | bd5eee34fd1495820fb8440d515cbc86e8d912b2 (patch) | |
tree | a2893dfdce80c818c9b1c34a320b8f45e064cd82 /protocols/yahoo/yahoo.c | |
parent | 75610c3b53a68451d9eaf40fdc8a5e6419a13339 (diff) | |
parent | 5a599a1550c670649dba681e702864d55d2e3795 (diff) |
Merging mainline, mostly for chatroom fixes I implemented there.
Diffstat (limited to 'protocols/yahoo/yahoo.c')
-rw-r--r-- | protocols/yahoo/yahoo.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/yahoo/yahoo.c b/protocols/yahoo/yahoo.c index 4fd7bee5..68bc6f69 100644 --- a/protocols/yahoo/yahoo.c +++ b/protocols/yahoo/yahoo.c @@ -831,6 +831,10 @@ void ext_yahoo_got_conf_invite( int id, const char *ignored, char txt[1024]; YList *m; + if( g_strcasecmp( who, ic->acc->user ) == 0 ) + /* WTF, Yahoo! seems to echo these now? */ + return; + inv = g_malloc( sizeof( struct byahoo_conf_invitation ) ); memset( inv, 0, sizeof( struct byahoo_conf_invitation ) ); inv->name = g_strdup( room ); |