mirror of
https://gitlab.com/comunic/comunicmobile
synced 2025-06-20 08:45:17 +00:00
Fix new API support
This commit is contained in:
@ -210,7 +210,7 @@ class ConversationsHelper {
|
|||||||
name: map["name"] == false ? null : map["name"],
|
name: map["name"] == false ? null : map["name"],
|
||||||
following: map["following"] == 1,
|
following: map["following"] == 1,
|
||||||
sawLastMessage: map["saw_last_message"] == 1,
|
sawLastMessage: map["saw_last_message"] == 1,
|
||||||
members: map["members"].map<int>((f) => int.parse(f)).toList(),
|
members: List<int>.from(map["members"]),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user