Update Vercel.py

This commit is contained in:
H Lohaus 2024-04-07 00:10:32 +02:00 committed by GitHub
parent 802cf1ce21
commit 1baca306c4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ class Vercel(AbstractProvider):
continue
for token in response.iter_content(chunk_size=None):
try:
yield token.decode()
yield token.decode(errors="ignore")
except UnicodeDecodeError:
pass
break