From cf6d7ff47aaa1adecf3de3e9eab56626dff1acb8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alex=20N=C3=B8rgaard?= Date: Wed, 15 Jan 2025 23:50:40 +0000 Subject: [PATCH] Fix bug due to typo in async pagination of entitlements loop --- discord/client.py | 2 +- discord/sku.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/discord/client.py b/discord/client.py index f33253bc9..c7410011e 100644 --- a/discord/client.py +++ b/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: diff --git a/discord/sku.py b/discord/sku.py index 46bdf94bf..3516370b4 100644 --- a/discord/sku.py +++ b/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: