From 971e52564bd0f7ca11cfb8ddbdf5a51a39621083 Mon Sep 17 00:00:00 2001 From: Hermes Agent Date: Wed, 15 Jul 2026 20:24:32 +0200 Subject: [PATCH] =?UTF-8?q?fix:=20worker:=20source=20=E2=86=92=20channel?= =?UTF-8?q?=20f=C3=BCr=20DB-Kompatibilit=C3=A4t?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- queue_worker.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/queue_worker.py b/queue_worker.py index fe8654a..317fe02 100644 --- a/queue_worker.py +++ b/queue_worker.py @@ -96,7 +96,7 @@ def process_whatsapp_submission(db: sqlite3.Connection, payload: dict) -> str: db.execute( """INSERT INTO submissions - (sender_id, sender_name, source, type, content, payload_json, created_at) + (sender_id, sender_name, channel, type, content, payload_json, created_at) VALUES (?, ?, ?, ?, ?, ?, ?)""", ( sender_id, @@ -153,7 +153,7 @@ def process_telegram_submission(db: sqlite3.Connection, payload: dict) -> str: db.execute( """INSERT INTO submissions - (sender_id, sender_name, source, type, content, payload_json, created_at) + (sender_id, sender_name, channel, type, content, payload_json, created_at) VALUES (?, ?, ?, ?, ?, ?, ?)""", ( sender_id,