From 1217052d34872093491cbe64e7630177da56b8eb Mon Sep 17 00:00:00 2001 From: itskovacs Date: Thu, 7 Aug 2025 18:44:26 +0200 Subject: [PATCH] :bug: Fix gpx export --- backend/trip/routers/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/trip/routers/settings.py b/backend/trip/routers/settings.py index 05a3803..0685538 100644 --- a/backend/trip/routers/settings.py +++ b/backend/trip/routers/settings.py @@ -62,7 +62,7 @@ def export_data(session: SessionDep, current_user: Annotated[str, Depends(get_cu for c in session.exec(select(Category).filter(Category.user == current_user)) ], "places": [ - PlaceRead.serialize(place) + PlaceRead.serialize(place, exclude_gpx=False) for place in session.exec(select(Place).filter(Place.user == current_user)) ], "images": {},