mirror of https://gitlab.com/litecord/litecord.git
pubsub.guild: default to always getting presence
This commit is contained in:
parent
4d7e6ec93c
commit
99e29ad39f
|
|
@ -120,7 +120,7 @@ class GuildDispatcher(DispatcherWithState):
|
|||
# note that this does not equate to any unsubscription
|
||||
# of the channel.
|
||||
flags = self.flags[guild_id][user_id]
|
||||
if event.startswith('PRESENCE_') and not flags.get('presence'):
|
||||
if event.startswith('PRESENCE_') and not flags.get('presence', True):
|
||||
continue
|
||||
|
||||
# filter the ones that matter
|
||||
|
|
|
|||
Loading…
Reference in New Issue