cron: Wait until bot is ready

This commit is contained in:
TSR Berry 2023-03-03 20:10:15 +01:00
parent 3418c206d9
commit 7f7a4c4707
No known key found for this signature in database
GPG key ID: 52353C0A4CCA15E2

View file

@ -22,6 +22,7 @@ class Robocronp(Cog):
self.daily.cancel()
async def send_data(self):
await self.bot.wait_until_ready()
data_files = [discord.File(fpath) for fpath in self.bot.wanted_jsons]
log_channel = self.bot.get_channel(config.botlog_channel)
await log_channel.send("Hourly data backups:", files=data_files)
@ -60,6 +61,7 @@ class Robocronp(Cog):
await ctx.send(f"{ctx.author.mention}: Deleted!")
async def do_jobs(self, ctab, jobtype, timestamp):
await self.bot.wait_until_ready()
log_channel = self.bot.get_channel(config.botlog_channel)
for job_name in ctab[jobtype][timestamp]:
try:
@ -98,6 +100,7 @@ class Robocronp(Cog):
)
async def clean_channel(self, channel_id):
await self.bot.wait_until_ready()
log_channel = self.bot.get_channel(config.botlog_channel)
channel = self.bot.get_channel(channel_id)
try: