From ac7f00bd8b4d3b66b20fa1a7d94a55caee404b10 Mon Sep 17 00:00:00 2001 From: Kepka Ludovic Date: Mon, 11 Aug 2025 10:40:42 +0200 Subject: [PATCH] configuration humble bundle --- webapp/configurations.py | 1 + 1 file changed, 1 insertion(+) diff --git a/webapp/configurations.py b/webapp/configurations.py index 534e533..17817f3 100644 --- a/webapp/configurations.py +++ b/webapp/configurations.py @@ -19,6 +19,7 @@ def openConfigurations(): def updateConfiguration(): for key in request.form : ConfigurationHelper().createOrUpdate(key, request.form.get(key)) + # Je fait ca car html n'envoi pas le parametre de checkbox quand il est décoché if (request.form.get("humble_bundle_channel") != None and request.form.get("humble_bundle_enable") == None) : ConfigurationHelper().createOrUpdate('humble_bundle_enable', False) db.session.commit()