diff options
author | Will Thompson <will.thompson@collabora.co.uk> | 2011-10-31 09:38:35 +0000 |
---|---|---|
committer | Will Thompson <will.thompson@collabora.co.uk> | 2011-10-31 09:38:35 +0000 |
commit | 08da102662f74cf084e4d2bdfc86f2b15e33ca66 (patch) | |
tree | af8f31d588711048fb4ea7440f7904cb40c78fe1 /src/roster.c | |
parent | f9529b7d27b0cc9edc9b7c39573c533963d87079 (diff) | |
parent | 9cf653e93ba9beb8ff2df73627cd2b1f5bedf6bc (diff) |
Merge branch 'telepathy-gabble-0.12'
Diffstat (limited to 'src/roster.c')
-rw-r--r-- | src/roster.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/roster.c b/src/roster.c index d7c05272c..3a818ff0a 100644 --- a/src/roster.c +++ b/src/roster.c @@ -1377,6 +1377,16 @@ got_roster_iq (GabbleRoster *roster, return FALSE; } + if (sub_type == WOCKY_STANZA_SUB_TYPE_RESULT && priv->received) + { + /* <https://bugs.freedesktop.org/show_bug.cgi?id=42186>: some super-buggy + * XMPP server running on vk.com sends its reply to our roster query twice. + */ + DEBUG ("The server sent replied to our roster query more than once! " + "Ignoring this reply"); + return FALSE; + } + process_roster (roster, query_node); if (sub_type == WOCKY_STANZA_SUB_TYPE_RESULT) |