We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 01d48af + 0e3bc3e commit 0e026aaCopy full SHA for 0e026aa
python_program/automatic_walk_time_tables/utils/file_parser.py
@@ -27,7 +27,7 @@ def parse_gpx_file(gpx_raw_data : TextIOWrapper) -> path.Path_LV03:
27
raise Exception('No track found')
28
29
lv03_path = paths[0].to_LV03()
30
- lv03_path.route_name = gpx.name
+ lv03_path.route_name = gpx.name if gpx.name else ""
31
if not lv03_path.has_elevation_for_all_points():
32
lv03_path = height_fetcher.height_fetch_path(lv03_path)
33
else:
webinterface/package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "automatic-walk-time-tables",
3
- "version": "2.2.0",
+ "version": "2.2.1",
4
"scripts": {
5
"ng": "ng",
6
"start": "ng serve",
0 commit comments