This commit is contained in:
hrxiang
2022-03-21 18:42:29 +08:00
parent 73b9eb776f
commit 700265c685
3 changed files with 6 additions and 1 deletions

View File

@@ -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();
}