From e69f466f530931b40e7a8f4e2b5504b6e8b6271c Mon Sep 17 00:00:00 2001 From: killer069 <65385476+killer069@users.noreply.github.com> Date: Wed, 20 Oct 2021 19:03:49 +0530 Subject: [PATCH] big Issue Fixed --- play-dl/Request/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/play-dl/Request/index.ts b/play-dl/Request/index.ts index 0bb612d..66a528c 100644 --- a/play-dl/Request/index.ts +++ b/play-dl/Request/index.ts @@ -35,7 +35,7 @@ export function request_stream(req_url: string, options: RequestOpts = { method: return; } if (Number(res.statusCode) >= 300 && Number(res.statusCode) < 400) { - res = await https_getter(res.headers.location as string, options); + res = await request_stream(res.headers.location as string, options); } resolve(res); });