cast score as int before sending to the server

This commit is contained in:
ggurdin 2024-10-08 16:43:27 -04:00
parent 5b4bcb5acc
commit f20aaa70d5
No known key found for this signature in database
GPG key ID: A01CB41737CBB478

View file

@ -169,7 +169,7 @@ class ActivityRecordResponse {
'audio': audioBytes,
'image': imageBytes,
'timestamp': timestamp.toIso8601String(),
'score': score,
'score': score.toInt(),
};
}