Browse Source

Handle case when guild owner somehow doesn't exist in permissions_for

pull/476/merge
Rapptz 8 years ago
parent
commit
0321558dec
  1. 3
      discord/abc.py

3
discord/abc.py

@ -296,7 +296,8 @@ class GuildChannel:
# The operation first takes into consideration the denied
# and then the allowed.
if member.id == self.guild.owner.id:
o = self.guild.owner
if o is not None and member.id == o.id:
return Permissions.all()
default = self.guild.default_role

Loading…
Cancel
Save