Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions packages/stream_video/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
## Upcoming

🐞 Fixed
* Fixed an issue where the leave call operation could fail if the there were some issues in parsing custom data.

## 0.10.4

✅ Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,8 @@ class UserResponse {
.toList(growable: false)
: const [],
createdAt: mapDateTime(json, r'created_at', r'')!,
custom: mapCastOfType<String, Object>(json, r'custom')!,
// MANUAL_EDIT: allow null values
custom: mapCastOfType<String, Object?>(json, r'custom')!,
deactivatedAt: mapDateTime(json, r'deactivated_at', r''),
deletedAt: mapDateTime(json, r'deleted_at', r''),
id: mapValueOfType<String>(json, r'id')!,
Expand Down
Loading