From 29026246370626b7d09986ff1cd92ea07f5bd97d Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Fri, 25 Aug 2023 14:09:26 +1000 Subject: [PATCH] bot: Fix to enable free licences of FREE MODE --- discord-bot/bot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord-bot/bot.py b/discord-bot/bot.py index 7a2f855..0f4cf8a 100644 --- a/discord-bot/bot.py +++ b/discord-bot/bot.py @@ -65,7 +65,7 @@ async def license(ctx): @tree.command(name="createsite", description="Create a new WordPress site") async def createsite(ctx, domain: str, licence: str): - if FREE_LICENCE == False: # If free licences are enabled then auto generate a licence + if FREE_LICENCE == True: # If free licences are enabled then auto generate a licence r = requests.post(f"http://{Master_IP}:{Master_Port}/add-licence",headers={"key":os.getenv('LICENCE_KEY')}) if r.status_code == 200: json = r.json()