mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 21:09:21 +00:00
Fix new API support
This commit is contained in:
parent
c0b64580f9
commit
f16480092b
@ -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"]),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user