Merge pull request #718 from pangeachat/fix-json-error

cast score as int before sending to the server
This commit is contained in:
ggurdin 2024-10-08 16:44:16 -04:00 committed by GitHub
commit e73303afb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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