# HG changeset patch # User Sulabh Mahajan # Date 1247748906 0 # Node ID a0ea1bcfa1c4d790485f222117477564d6a10447 # Parent 307f346eefa243598f837ea077515d032bf98bb1 Fixes ticket #9685, Use the fact "Status is 11 when we are being notified about invitation being sent to someone else" diff -r 307f346eefa2 -r a0ea1bcfa1c4 libpurple/protocols/yahoo/yahoochat.c --- a/libpurple/protocols/yahoo/yahoochat.c Thu Jul 16 05:46:43 2009 +0000 +++ b/libpurple/protocols/yahoo/yahoochat.c Thu Jul 16 12:55:06 2009 +0000 @@ -122,8 +122,8 @@ GString *members = NULL; GHashTable *components; - if (pkt->status == 2) - return; /* XXX */ + if ( (pkt->status == 2) || (pkt->status == 11) ) + return; /* Status is 11 when we are being notified about invitation being sent to someone else */ account = purple_connection_get_account(gc);