From a58f047b7fba8f4a620d959abe0d89f8d6d274cd Mon Sep 17 00:00:00 2001 From: bashonly Date: Sat, 12 Jul 2025 16:36:04 -0500 Subject: [PATCH] fix comment Authored by: bashonly --- yt_dlp/extractor/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/yt_dlp/extractor/common.py b/yt_dlp/extractor/common.py index 97808ee3b..dbab432ec 100644 --- a/yt_dlp/extractor/common.py +++ b/yt_dlp/extractor/common.py @@ -1817,7 +1817,7 @@ def flatten(flight_data): f'{video_id}: Unsupported next.js flight data structure detected', only_once=True) continue # Only use the relevant payload type (1 == data) - # Ref: https://github.com/vercel/next.js/blob/5a4a08fdc/packages/next/src/server/app-render/use-flight-response.tsx#L11-#L14 + # Ref: https://github.com/vercel/next.js/blob/5a4a08fdc/packages/next/src/server/app-render/use-flight-response.tsx#L11-L14 payload_type, chunk = segment if payload_type == 1: flight_text += chunk