Browse Source

[bugfix] handle stale presences correctly

It's possible for Discord to send us presences for users which do not
actually exist in the Guild (remember; eventually consistent), so we
should throw these away when we get them.
pull/41/merge
Andrei 8 years ago
parent
commit
5aa5e63079
  1. 3
      disco/state.py

3
disco/state.py

@ -188,7 +188,8 @@ class State(object):
self.users[member.user.id] = member.user self.users[member.user.id] = member.user
for presence in event.presences: for presence in event.presences:
self.users[presence.user.id].presence = presence if presence.user.id in self.users:
self.users[presence.user.id].presence = presence
for voice_state in six.itervalues(event.guild.voice_states): for voice_state in six.itervalues(event.guild.voice_states):
self.voice_states[voice_state.session_id] = voice_state self.voice_states[voice_state.session_id] = voice_state

Loading…
Cancel
Save