Private
Public Access
1
0

Merge branch 'release/v16.2.3'

This commit is contained in:
Sander Roosendaal
2021-05-18 07:04:40 +02:00

View File

@@ -2991,7 +2991,10 @@ def handle_c2_async_workout(alldata,userid,c2token,c2id,delaysec,defaulttimezone
c2id = data['id']
workouttype = data['type']
verified = data['verified']
startdatetime = iso8601.parse_date(data['date_utc'])
try:
startdatetime = iso8601.parse_date(data['date_utc'])
except:
startdatetime = iso8601.parse_date(data['date'])
weightclass = data['weight_class']
try: