1
0
mirror of https://gitlab.com/comunic/comunicapiv2 synced 2025-06-20 00:25:17 +00:00

Use Set instead of Array for conversation members

This commit is contained in:
2019-11-30 14:41:34 +01:00
parent 862d8e0210
commit abd6514b59
3 changed files with 6 additions and 6 deletions

View File

@ -271,7 +271,7 @@ export class ConversationsHelper {
timeCreate: row.time_add,
following: row.following,
sawLastMessage: row.saw_last_message == 1,
members: [...await this.GetConversationMembers(row.id)]
members: await this.GetConversationMembers(row.id)
}
}
}