Browse Source

Fix bug due to typo in async pagination of entitlements loop

pull/10082/head
Alex Nørgaard 3 months ago
committed by GitHub
parent
commit
cf6d7ff47a
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      discord/client.py
  2. 2
      discord/sku.py

2
discord/client.py

@ -2955,7 +2955,7 @@ class Client:
data, state, limit = await strategy(retrieve, state, limit)
# Terminate loop on next iteration; there's no data left after this
if len(data) < 1000:
if len(data) < 100:
limit = 0
for e in data:

2
discord/sku.py

@ -239,7 +239,7 @@ class SKU:
data, state, limit = await strategy(retrieve, state, limit)
# Terminate loop on next iteration; there's no data left after this
if len(data) < 1000:
if len(data) < 100:
limit = 0
for e in data:

Loading…
Cancel
Save