From eddbe27f2ef0a2f19d84b470d1f59cde419bde08 Mon Sep 17 00:00:00 2001 From: Rapptz Date: Wed, 22 Jan 2020 20:05:00 -0500 Subject: [PATCH] Fix out of order files being sent in webhooks when there are 10 files. --- discord/webhook.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/discord/webhook.py b/discord/webhook.py index ae2e65a98..cc43bbca8 100644 --- a/discord/webhook.py +++ b/discord/webhook.py @@ -127,7 +127,7 @@ class WebhookAdapter: multipart = { 'payload_json': utils.to_json(payload) } - for i, file in enumerate(files, start=1): + for i, file in enumerate(files): multipart['file%i' % i] = (file.filename, file.fp, 'application/octet-stream') data = None