We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6eff2a commit 6dbf269Copy full SHA for 6dbf269
lagrange/client/client.py
@@ -374,7 +374,9 @@ async def get_friend_list(self):
374
next = GetFriendListRsp.decode(
375
(
376
await self.send_oidb_svc(
377
- 0xFD4, 1, PBGetFriendListRequest().encode()
+ 0xFD4,
378
+ 1,
379
+ PBGetFriendListRequest(next_uin=nextuin_cache.pop()).encode(),
380
)
381
).data
382
@@ -393,7 +395,7 @@ async def get_friend_list(self):
393
395
394
396
397
if next.next:
- nextuin_cache.append(next)
398
+ nextuin_cache.append(next.next)
399
400
return rsp
401
0 commit comments