aboutsummaryrefslogtreecommitdiff
path: root/newspipe/lib/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'newspipe/lib/utils.py')
-rw-r--r--newspipe/lib/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/newspipe/lib/utils.py b/newspipe/lib/utils.py
index 3d6bf0b8..7e6f3cf4 100644
--- a/newspipe/lib/utils.py
+++ b/newspipe/lib/utils.py
@@ -90,7 +90,7 @@ def redirect_url(default="home"):
return request.args.get("next") or request.referrer or url_for(default)
-async def newspipe_get(url, **kwargs):
+def newspipe_get(url, **kwargs):
request_kwargs = {
"verify": False,
"allow_redirects": True,
bgstack15