@@ -10,6 +10,7 @@ import (
10
10
"context"
11
11
"errors"
12
12
"fmt"
13
+ "slices"
13
14
"strings"
14
15
15
16
"google.golang.org/protobuf/proto"
@@ -464,19 +465,11 @@ func (cli *Client) GetUserDevicesContext(ctx context.Context, jids []types.JID)
464
465
}
465
466
466
467
if len (fbJIDsToSync ) > 0 {
467
- list , err := cli .getFBIDDevices (ctx , fbJIDsToSync )
468
+ userDevices , err := cli .getFBIDDevices (ctx , fbJIDsToSync )
468
469
if err != nil {
469
470
return nil , err
470
471
}
471
- for _ , user := range list .GetChildren () {
472
- jid , jidOK := user .Attrs ["jid" ].(types.JID )
473
- if user .Tag != "user" || ! jidOK {
474
- continue
475
- }
476
- userDevices := parseFBDeviceList (jid , user .GetChildByTag ("devices" ))
477
- cli .userDevicesCache [jid ] = userDevices
478
- devices = append (devices , userDevices .devices ... )
479
- }
472
+ devices = append (devices , userDevices ... )
480
473
}
481
474
482
475
return devices , nil
@@ -703,7 +696,7 @@ func parseFBDeviceList(user types.JID, deviceList waBinary.Node) deviceCache {
703
696
}
704
697
}
705
698
706
- func (cli * Client ) getFBIDDevices (ctx context.Context , jids []types.JID ) (* waBinary.Node , error ) {
699
+ func (cli * Client ) getFBIDDevicesInternal (ctx context.Context , jids []types.JID ) (* waBinary.Node , error ) {
707
700
users := make ([]waBinary.Node , len (jids ))
708
701
for i , jid := range jids {
709
702
users [i ].Tag = "user"
@@ -729,6 +722,26 @@ func (cli *Client) getFBIDDevices(ctx context.Context, jids []types.JID) (*waBin
729
722
}
730
723
}
731
724
725
+ func (cli * Client ) getFBIDDevices (ctx context.Context , jids []types.JID ) ([]types.JID , error ) {
726
+ var devices []types.JID
727
+ for chunk := range slices .Chunk (jids , 15 ) {
728
+ list , err := cli .getFBIDDevicesInternal (ctx , chunk )
729
+ if err != nil {
730
+ return nil , err
731
+ }
732
+ for _ , user := range list .GetChildren () {
733
+ jid , jidOK := user .Attrs ["jid" ].(types.JID )
734
+ if user .Tag != "user" || ! jidOK {
735
+ continue
736
+ }
737
+ userDevices := parseFBDeviceList (jid , user .GetChildByTag ("devices" ))
738
+ cli .userDevicesCache [jid ] = userDevices
739
+ devices = append (devices , userDevices .devices ... )
740
+ }
741
+ }
742
+ return devices , nil
743
+ }
744
+
732
745
type UsyncQueryExtras struct {
733
746
BotListInfo []types.BotListInfo
734
747
}
0 commit comments