From 7f7a4c4707abf570ffe8632a804b1c6bbcc71e0c Mon Sep 17 00:00:00 2001 From: TSR Berry <20988865+TSRBerry@users.noreply.github.com> Date: Fri, 3 Mar 2023 20:10:15 +0100 Subject: [PATCH] cron: Wait until bot is ready --- robocop_ng/cogs/robocronp.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/robocop_ng/cogs/robocronp.py b/robocop_ng/cogs/robocronp.py index 78ed841..8b41c83 100644 --- a/robocop_ng/cogs/robocronp.py +++ b/robocop_ng/cogs/robocronp.py @@ -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: