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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with
2 additions and
2 deletions
-
discord/client.py
-
discord/sku.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: |
|
|
|
|
|
@ -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: |
|
|
|