bot: Fixed check if site ready function args
All checks were successful
Build Docker / Build Master (push) Successful in 21s
Build Docker / Build Bot (push) Successful in 24s

This commit is contained in:
Nathan Woodburn 2023-08-25 12:51:58 +10:00
parent ce8827ed97
commit d217309e74
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -76,7 +76,7 @@ async def createsite(ctx, domain: str, licence: str):
ready = False
while ready == False:
ready = await check_site_ready(domain,ctx.user.id)
ready = await check_site_ready(domain)
if ready == False:
await asyncio.sleep(30)