diff --git a/src/Socket/groups.ts b/src/Socket/groups.ts index 8a31159..5e6b75d 100644 --- a/src/Socket/groups.ts +++ b/src/Socket/groups.ts @@ -193,7 +193,7 @@ export const makeGroupsSocket = (config: SocketConfig) => { const node = getBinaryNodeChild(result, action) const participantsAffected = getBinaryNodeChildren(node!, 'participant') return participantsAffected.map(p => { - return { status: p.attrs.error || '200', jid: p.attrs.jid } + return { status: p.attrs.error || '200', jid: p.attrs.jid, content: p } }) }, groupUpdateDescription: async(jid: string, description?: string) => {