aboutsummaryrefslogtreecommitdiff
path: root/src/utils/http.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/utils/http.py')
-rw-r--r--src/utils/http.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/utils/http.py b/src/utils/http.py
index 232b1c6b..b20b2264 100644
--- a/src/utils/http.py
+++ b/src/utils/http.py
@@ -125,7 +125,7 @@ def request(url: str, method: str="GET", get_params: dict={},
encoding = response.encoding
if content_type and content_type in SOUP_CONTENT_TYPES:
souped = bs4.BeautifulSoup(response_content, parser)
- encoding = _find_encoding(souped) or encoding
+ encoding = _find_encoding(souped) or encoding or "iso-8859-1"
def _decode_data():
return response_content.decode(encoding)