mirror of
https://github.com/imputnet/cobalt.git
synced 2025-06-28 17:38:31 +00:00
instagram: remove async tag from non async functions
This commit is contained in:
parent
2561cf168e
commit
018557cbcd
@ -116,7 +116,7 @@ async function requestGQL(id, cookie) {
|
|||||||
?.[0];
|
?.[0];
|
||||||
}
|
}
|
||||||
|
|
||||||
async function extractOldPost(data, id) {
|
function extractOldPost(data, id) {
|
||||||
const sidecar = data?.gql_data?.shortcode_media?.edge_sidecar_to_children;
|
const sidecar = data?.gql_data?.shortcode_media?.edge_sidecar_to_children;
|
||||||
if (sidecar) {
|
if (sidecar) {
|
||||||
const picker = sidecar.edges.filter(e => e.node?.display_url)
|
const picker = sidecar.edges.filter(e => e.node?.display_url)
|
||||||
@ -152,7 +152,7 @@ async function extractOldPost(data, id) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function extractNewPost(data, id) {
|
function extractNewPost(data, id) {
|
||||||
const carousel = data.carousel_media;
|
const carousel = data.carousel_media;
|
||||||
if (carousel) {
|
if (carousel) {
|
||||||
const picker = carousel.filter(e => e?.image_versions2)
|
const picker = carousel.filter(e => e?.image_versions2)
|
||||||
|
Loading…
Reference in New Issue
Block a user