From ddead05712b1c47d9a2dd818c7e9d507a95db091 Mon Sep 17 00:00:00 2001 From: Dean Perry Date: Sat, 6 Jan 2024 16:58:19 +0000 Subject: [PATCH] update http to https --- twitchdl/twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitchdl/twitch.py b/twitchdl/twitch.py index d175607..cb32b2d 100644 --- a/twitchdl/twitch.py +++ b/twitchdl/twitch.py @@ -335,7 +335,7 @@ def get_playlists(video_id, access_token): """ For a given video return a playlist which contains possible video qualities. """ - url = "http://usher.ttvnw.net/vod/{}".format(video_id) + url = "https://usher.ttvnw.net/vod/{}".format(video_id) response = httpx.get(url, params={ "nauth": access_token['value'],