mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-13 03:39:59 +00:00
tiktok: replace filter with find
This commit is contained in:
parent
18545e7c91
commit
299b46e940
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ export default async function(obj) {
|
|||
}
|
||||
}).then((r) => { return r.json() }).catch(() => { return false });
|
||||
|
||||
detail = detail?.aweme_list?.filter(v => v.aweme_id === postId)[0];
|
||||
detail = detail?.aweme_list?.find(v => v.aweme_id === postId);
|
||||
if (!detail) return { error: 'ErrorCouldntFetch' };
|
||||
|
||||
let video, videoFilename, audioFilename, isMp3, audio, images,
|
||||
|
|
Loading…
Reference in a new issue