diff --git a/ext/libcal.py b/ext/libcal.py index 768c50b..6f13c5b 100644 --- a/ext/libcal.py +++ b/ext/libcal.py @@ -90,7 +90,7 @@ async def book_error_handler(event: lightbulb.CommandErrorEvent): embed.set_image(event.context.options.img) owners = await event.context.bot.fetch_owner_ids() for user_id in owners: - await event.context.bot.rest.fetch_user(user_id).send(embed) + await (await event.context.bot.rest.fetch_user(user_id)).send(embed) else: embed = hikari.Embed( title="Booking Error", description="Whelp, better luck next time I guess... the images used are attached.")