From 1173bdb6dc51c54022ff26e61941ff8cc9848f5a Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Thu, 25 Jun 2026 08:58:49 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20WhatsApp-Webhook=20=E2=80=94=20db=20=3D?= =?UTF-8?q?=20get=5Fdb()=20fehlte=20nach=20Edge-Queue-Refactor=20(NameErro?= =?UTF-8?q?r)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app.py b/app.py index ee61e7f..c3ca083 100644 --- a/app.py +++ b/app.py @@ -1026,6 +1026,7 @@ def whatsapp_webhook(): return "OK", 200 from webhook_queue import whatsapp_intake + db = get_db() return whatsapp_intake(request, db)