From b16d0315c69c357509ac10708c57caec67157c8e Mon Sep 17 00:00:00 2001 From: CasperMcFadden95 <145611964+CasperMcFadden95@users.noreply.github.com> Date: Fri, 29 Aug 2025 16:36:42 +0000 Subject: [PATCH] Update shahid.py --- yt_dlp/extractor/shahid.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/yt_dlp/extractor/shahid.py b/yt_dlp/extractor/shahid.py index 5467af36b2..c67b72d299 100644 --- a/yt_dlp/extractor/shahid.py +++ b/yt_dlp/extractor/shahid.py @@ -63,9 +63,9 @@ class ShahidBaseIE(InfoExtractor): r'aws\.manifestfilter=[\w:;,-]+&?', '', stream_url), video_id, 'mp4', live=live) - def _get_product_info(self, video_id): - return self._call_api('product/id', video_id, { - 'id': video_id, + def _get_product_info(self, product_id): + return self._call_api('product/id', product_id, { + 'id': product_id, }) def remove_params(self, url):