1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-11-22 04:49:21 +00:00

Fix new API support

This commit is contained in:
Pierre HUBERT 2020-03-30 22:44:08 +02:00
parent c0b64580f9
commit f16480092b

View File

@ -210,7 +210,7 @@ class ConversationsHelper {
name: map["name"] == false ? null : map["name"],
following: map["following"] == 1,
sawLastMessage: map["saw_last_message"] == 1,
members: map["members"].map<int>((f) => int.parse(f)).toList(),
members: List<int>.from(map["members"]),
);
}