aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWilmer van der Gaast <wilmer@gaast.net>2010-05-09 00:50:12 +0100
committerWilmer van der Gaast <wilmer@gaast.net>2010-05-09 00:50:12 +0100
commitaa7ce1b3dd961e948e907460bd42bf1592ea1717 (patch)
treeea5f113720670f55e355069caf5a5c889d082bed
parent999769119e85518cc46b3ed64cb8781695fefbdc (diff)
Yahoo! seems to echo conference room invitations now, huh? No idea what this
is but let's ignore them.
-rw-r--r--protocols/yahoo/yahoo.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/protocols/yahoo/yahoo.c b/protocols/yahoo/yahoo.c
index b61f6ff9..922ac17b 100644
--- a/protocols/yahoo/yahoo.c
+++ b/protocols/yahoo/yahoo.c
@@ -827,6 +827,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 );