mirror of
https://github.com/imputnet/cobalt.git
synced 2025-03-03 21:26:20 +00:00
instagram: check if cookie exists before using it in second fallback
This commit is contained in:
parent
1ff49f0669
commit
2561cf168e
|
@ -201,7 +201,7 @@ async function getPost(id) {
|
|||
const cookie = getCookie('instagram');
|
||||
|
||||
data = await requestHTML(id);
|
||||
if (!data) data = await requestHTML(id, cookie);
|
||||
if (!data && cookie) data = await requestHTML(id, cookie);
|
||||
|
||||
if (!data) {
|
||||
dataType = 'new';
|
||||
|
|
Loading…
Reference in a new issue