mirror of https://gitlab.com/litecord/litecord.git
pubsub.lazy_guild: remove member list from guild map too
This commit is contained in:
parent
d1ef08fbd0
commit
300f948ab2
|
|
@ -1342,6 +1342,11 @@ class LazyGuildDispatcher(Dispatcher):
|
||||||
"""Remove a channel from the manager."""
|
"""Remove a channel from the manager."""
|
||||||
try:
|
try:
|
||||||
gml = self.state.pop(channel_id)
|
gml = self.state.pop(channel_id)
|
||||||
|
|
||||||
|
# remove it from guild map as well
|
||||||
|
guild_id = gml.guild_id
|
||||||
|
self.guild_map[guild_id].pop(channel_id)
|
||||||
|
|
||||||
gml.close()
|
gml.close()
|
||||||
except KeyError:
|
except KeyError:
|
||||||
pass
|
pass
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue