mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-14 12:19:59 +00:00
tiktok: more cleaning up
This commit is contained in:
parent
5dcbe397dc
commit
acdb22c41b
1 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@ export default async function(obj) {
|
||||||
headers: {
|
headers: {
|
||||||
"user-agent": genericUserAgent.split(' Chrome/1')[0]
|
"user-agent": genericUserAgent.split(' Chrome/1')[0]
|
||||||
}
|
}
|
||||||
}).then((r) => { return r.text() }).catch(() => { return false });
|
}).then(r => r.text()).catch(() => {});
|
||||||
|
|
||||||
if (!html) return { error: 'ErrorCouldntFetch' };
|
if (!html) return { error: 'ErrorCouldntFetch' };
|
||||||
|
|
||||||
|
@ -37,7 +37,7 @@ export default async function(obj) {
|
||||||
headers: {
|
headers: {
|
||||||
"user-agent": apiUserAgent
|
"user-agent": apiUserAgent
|
||||||
}
|
}
|
||||||
}).then((r) => { return r.json() }).catch(() => { return false });
|
}).then(r => r.json()).catch(() => {});
|
||||||
|
|
||||||
detail = detail?.aweme_list?.find(v => v.aweme_id === postId);
|
detail = detail?.aweme_list?.find(v => v.aweme_id === postId);
|
||||||
if (!detail) return { error: 'ErrorCouldntFetch' };
|
if (!detail) return { error: 'ErrorCouldntFetch' };
|
||||||
|
@ -45,7 +45,7 @@ export default async function(obj) {
|
||||||
let video, videoFilename, audioFilename, isMp3, audio, images,
|
let video, videoFilename, audioFilename, isMp3, audio, images,
|
||||||
filenameBase = `tiktok_${detail.author.unique_id}_${postId}`;
|
filenameBase = `tiktok_${detail.author.unique_id}_${postId}`;
|
||||||
|
|
||||||
images = detail.image_post_info ? detail.image_post_info.images : false;
|
images = detail.image_post_info?.images;
|
||||||
|
|
||||||
let playAddr = detail.video.play_addr_h264;
|
let playAddr = detail.video.play_addr_h264;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue