1.1.9
Fixed random stops while creating stream Fixed search returning undefined description. Updated @types/node version
This commit is contained in:
commit
3416cd493f
@ -35,7 +35,7 @@ export function request_stream(req_url: string, options: RequestOpts = { method:
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (Number(res.statusCode) >= 300 && Number(res.statusCode) < 400) {
|
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);
|
resolve(res);
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user