We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b65056b commit 0bdfa89Copy full SHA for 0bdfa89
CHANGELOG.md
@@ -1,3 +1,10 @@
1
+## [1.0.1] - 2024-08-30
2
+#### [@rickypid](https://github.com/rickypid)
3
+
4
+### Fixed
5
6
+* Fixed update room call
7
8
## [1.0.0] - 2024-06-19
9
#### [@rickypid](https://github.com/rickypid)
10
lib/src/class/supabase_chat_core.dart
@@ -472,7 +472,7 @@ class SupabaseChatCore {
472
473
return messageMap;
474
}).toList();
475
- roomMap['updatedAt'] = DateTime.now();
+ roomMap['updatedAt'] = DateTime.now().millisecondsSinceEpoch;
476
roomMap['userIds'] = room.users.map((u) => u.id).toList();
477
478
await client
0 commit comments