diff options
Diffstat (limited to '')
| -rw-r--r-- | bot/exts/info/information.py | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/bot/exts/info/information.py b/bot/exts/info/information.py index 5b25fd0c3..e616b9208 100644 --- a/bot/exts/info/information.py +++ b/bot/exts/info/information.py @@ -470,7 +470,7 @@ class Information(Cog):          If `json` is True, send the information in a copy-pasteable Python format.          """ -        if ctx.author not in message.channel.members: +        if not message.channel.permissions_for(ctx.author).read_messages:              await ctx.send(":x: You do not have permissions to see the channel this message is in.")              return  |