mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 10:01:21 +01:00
Dont read messages if the channel has no permissions
This commit is contained in:
parent
5c04dffb0d
commit
346a68c780
@ -103,6 +103,8 @@ class RedisQueue:
|
||||
return
|
||||
await self.connection.delete([key])
|
||||
messages = []
|
||||
me = channel.guild.get_member(self.bot.user.id)
|
||||
if channel.permissions_for(me).read_messages:
|
||||
async for message in channel.history(limit=50):
|
||||
formatted = get_formatted_message(message)
|
||||
messages.append(json.dumps(formatted, separators=(',', ':')))
|
||||
|
Loading…
Reference in New Issue
Block a user