mirror of
https://github.com/TitanEmbeds/Titan.git
synced 2024-11-14 18:11:23 +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
|
return
|
||||||
await self.connection.delete([key])
|
await self.connection.delete([key])
|
||||||
messages = []
|
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):
|
async for message in channel.history(limit=50):
|
||||||
formatted = get_formatted_message(message)
|
formatted = get_formatted_message(message)
|
||||||
messages.append(json.dumps(formatted, separators=(',', ':')))
|
messages.append(json.dumps(formatted, separators=(',', ':')))
|
||||||
|
Loading…
Reference in New Issue
Block a user