From 3e939e84c478314f9c6179249b1506432bf1673c Mon Sep 17 00:00:00 2001 From: Thomas B <17140451+thomasboghaert@users.noreply.github.com> Date: Thu, 5 Feb 2026 20:55:53 +0100 Subject: [PATCH] fix ride date field mismatch between frontend and backend --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index 235a3a0..80a1662 100644 --- a/app.py +++ b/app.py @@ -116,7 +116,7 @@ def upload_file(): return jsonify({'error': 'No file uploaded'}), 400 file = request.files['gpx_file'] - ride_date = request.form.get('ride_date') + ride_date = request.form.get('planned_date') selected_countries = request.form.getlist('countries') if file.filename == '':