main
hrxiang 3 years ago
parent 73b9eb776f
commit 700265c685
  1. 4
      CHANGELOG.md
  2. 1
      lib/src/models/message.dart
  3. 2
      pubspec.yaml

@ -1,3 +1,7 @@
## 2.0.0+3
1.Fix bug </br>
## 2.0.0+2
1.Fix some one crash </br>

@ -638,6 +638,7 @@ class ReadReceiptInfo {
ReadReceiptInfo.fromJson(Map<String, dynamic> json) {
userID = json['uid'] ?? json['userID'];
groupID = json['groupID'];
if (json['msgIDList'] is List) {
msgIDList = (json['msgIDList'] as List).map((e) => '$e').toList();
}

@ -1,6 +1,6 @@
name: flutter_openim_sdk
description: An instant messaging plug-in that supports Android and IOS. And the server is also all open source.
version: 2.0.0+2
version: 2.0.0+3
homepage: https://www.rentsoft.cn
repository: https://github.com/OpenIMSDK/Open-IM-SDK-Flutter

Loading…
Cancel
Save