From 5bb6e73a2643d5a1bde4c9ecacf6afcaa2fd0d55 Mon Sep 17 00:00:00 2001 From: Christian Date: Mon, 22 Dec 2025 15:29:28 +0100 Subject: [PATCH] =?UTF-8?q?Fix:=20Contacts=20query=20skulle=20returnere=20?= =?UTF-8?q?alle=20r=C3=A6kker=20ikke=20kun=20=C3=A9n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/contacts/backend/router.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/contacts/backend/router.py b/app/contacts/backend/router.py index 083249b..1b69e06 100644 --- a/app/contacts/backend/router.py +++ b/app/contacts/backend/router.py @@ -70,7 +70,7 @@ async def get_contacts( """ params.extend([limit, offset]) - contacts = execute_query_single(query, tuple(params)) # Default is fetchall + contacts = execute_query(query, tuple(params)) # Returns all rows return { "contacts": contacts or [],