Browse Source

Fix bug with Guild.by_category not showing some channels

If categories come after a child channel in the dictionary mapping for
whatever reason, then the previous code would remove it from the
mapping and set it to []. This commit aims to fix this.
pull/5752/head
Rapptz 5 years ago
parent
commit
11f29890dc
  1. 12
      discord/guild.py

12
discord/guild.py

@ -104,10 +104,10 @@ class Guild(Hashable):
max_presences: Optional[:class:`int`]
The maximum amount of presences for the guild.
max_members: Optional[:class:`int`]
The maximum amount of members for the guild.
The maximum amount of members for the guild.
.. note::
This attribute is only available via :meth:`.Client.fetch_guild`.
max_video_channel_users: Optional[:class:`int`]
The maximum amount of users in a video channel.
@ -415,7 +415,7 @@ class Guild(Hashable):
grouped = {}
for channel in self._channels.values():
if isinstance(channel, CategoryChannel):
grouped[channel.id] = []
grouped.setdefault(channel.id, [])
continue
try:
@ -909,7 +909,7 @@ class Guild(Hashable):
The channel's preferred audio bitrate in bits per second.
user_limit: :class:`int`
The channel's limit for number of members that can be in a voice channel.
Raises
------
Forbidden
@ -940,7 +940,7 @@ class Guild(Hashable):
The ``category`` parameter is not supported in this function since categories
cannot have categories.
Raises
------
Forbidden
@ -1746,7 +1746,7 @@ class Guild(Hashable):
async def edit_role_positions(self, positions, *, reason=None):
"""|coro|
Bulk edits a list of :class:`Role` in the guild.
You must have the :attr:`~Permissions.manage_roles` permission to

Loading…
Cancel
Save