Private
Public Access
1
0

fixed small error in workout name detection from FIT

This commit is contained in:
2025-01-07 17:48:16 +01:00
parent edbafefe43
commit 9b1d00fb67

View File

@@ -1403,6 +1403,8 @@ def get_title_from_fit(filename):
title = ' '.join(record.get_values()['wkt_name'].split())
except KeyError:
pass
except AttributeError:
pass
return title