From 5aa5e63079ff29fe9bc85ee9c9bb720624859427 Mon Sep 17 00:00:00 2001 From: Andrei Date: Mon, 10 Jul 2017 07:15:26 -0700 Subject: [PATCH] [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. --- disco/state.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/disco/state.py b/disco/state.py index 1d0f6d7..94888e9 100644 --- a/disco/state.py +++ b/disco/state.py @@ -188,7 +188,8 @@ class State(object): self.users[member.user.id] = member.user 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): self.voice_states[voice_state.session_id] = voice_state