@@ -176,7 +176,7 @@ func (cli *Client) UpdateGroupParticipants(jid types.JID, participantChanges []t
176
176
}
177
177
178
178
// GetGroupRequestParticipants gets the list of participants that have requested to join the group.
179
- func (cli * Client ) GetGroupRequestParticipants (jid types.JID ) ([]types.JID , error ) {
179
+ func (cli * Client ) GetGroupRequestParticipants (jid types.JID ) ([]types.GroupParticipantRequest , error ) {
180
180
resp , err := cli .sendGroupIQ (context .TODO (), iqGet , jid , waBinary.Node {
181
181
Tag : "membership_approval_requests" ,
182
182
})
@@ -188,9 +188,12 @@ func (cli *Client) GetGroupRequestParticipants(jid types.JID) ([]types.JID, erro
188
188
return nil , & ElementMissingError {Tag : "membership_approval_requests" , In : "response to group request participants query" }
189
189
}
190
190
requestParticipants := request .GetChildrenByTag ("membership_approval_request" )
191
- participants := make ([]types.JID , len (requestParticipants ))
191
+ participants := make ([]types.GroupParticipantRequest , len (requestParticipants ))
192
192
for i , req := range requestParticipants {
193
- participants [i ] = req .AttrGetter ().JID ("jid" )
193
+ participants [i ] = types.GroupParticipantRequest {
194
+ JID : req .AttrGetter ().JID ("jid" ),
195
+ RequestedAt : req .AttrGetter ().UnixTime ("request_time" ),
196
+ }
194
197
}
195
198
return participants , nil
196
199
}
0 commit comments