Private
Public Access
1
0
This commit is contained in:
Sander Roosendaal
2021-05-18 06:59:35 +02:00
parent bad14ed49a
commit 3a1efa3022

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: