From 1a735dc0d83d8ddc351be7738ad88f08a5a50f15 Mon Sep 17 00:00:00 2001 From: MrHulk <154370583+MrHulk02@users.noreply.github.com> Date: Tue, 10 Sep 2024 11:31:53 +0530 Subject: [PATCH] Update yt_dlp/extractor/fptplay.py Co-authored-by: N/Ame <173015200+grqz@users.noreply.github.com> --- yt_dlp/extractor/fptplay.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/fptplay.py b/yt_dlp/extractor/fptplay.py index 985d7b0e5..367771028 100644 --- a/yt_dlp/extractor/fptplay.py +++ b/yt_dlp/extractor/fptplay.py @@ -44,7 +44,7 @@ def _real_extract(self, url): contentId = self._match_id(url) # Need valid cookie with Bearer token, else it won't work - token = self._get_cookies(url).get("token") + token = self._get_cookies(url).get('token') res = self._download_json(self.get_api_with_st_token(contentId), contentId, expected_status=406)