From d056f02f788898d4611fb4dc05e9ec5c9895f9aa Mon Sep 17 00:00:00 2001 From: Carsten Kvist Date: Mon, 13 Apr 2026 15:46:18 +0200 Subject: [PATCH] Programfejl --- linedance-api/app/routers/sync.py | 1 + 1 file changed, 1 insertion(+) diff --git a/linedance-api/app/routers/sync.py b/linedance-api/app/routers/sync.py index 8c453729..d30c03bb 100644 --- a/linedance-api/app/routers/sync.py +++ b/linedance-api/app/routers/sync.py @@ -240,6 +240,7 @@ def pull( """Hent server-data til lokal app.""" # Dans-niveauer + levels = [ {"id": l.id, "name": l.name, "sort_order": l.sort_order} for l in db.query(DanceLevel).order_by(DanceLevel.sort_order).all() ]