Browse Source

Better detection for Cloudflare related 429s.

At some point Cloudflare started returning some JSON. I don't know how
this JSON looks like.

See #2544
pull/2548/head
Rapptz 5 years ago
parent
commit
25a04ed135
  1. 2
      discord/http.py

2
discord/http.py

@ -179,7 +179,7 @@ class HTTPClient:
# we are being rate limited
if r.status == 429:
if not isinstance(data, dict):
if not r.headers.get('Via'):
# Banned by Cloudflare more than likely.
raise HTTPException(r, data)

Loading…
Cancel
Save