From dd44fad29469233aa6b203521699a723abf61a38 Mon Sep 17 00:00:00 2001 From: Dylan De Faoite Date: Mon, 2 Mar 2026 18:30:52 +0000 Subject: [PATCH] fix(db): incorrect NER column name in database saving --- db/database.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/database.py b/db/database.py index 80cf5b3..30b8f34 100644 --- a/db/database.py +++ b/db/database.py @@ -110,7 +110,7 @@ class PostgresConnector: row["source"], row.get("topic"), row.get("topic_confidence"), - Json(row["ner_entities"]) if row.get("ner_entities") else None, + Json(row["entities"]) if row.get("entities") else None, row.get("emotion_anger"), row.get("emotion_disgust"), row.get("emotion_fear"),