mirror of
https://codeberg.org/ashley/poke
synced 2025-04-06 01:27:59 +00:00
add try catch :p
This commit is contained in:
parent
cdab6720ad
commit
7e5725064e
@ -38,10 +38,17 @@ module.exports = async function (video_id) {
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
async function parsexml(id) {
|
async function parsexml(id) {
|
||||||
const player = await fetch(`${new_api_url}?v=${id}`, headers);
|
async function fetchxmlvideo() {
|
||||||
var h = await player.text();
|
try {
|
||||||
var j = toJson(h);
|
const player = await fetch(`${new_api_url}?v=${id}`, headers);
|
||||||
return getJson(j);
|
var h = await player.text();
|
||||||
|
var j = toJson(h);
|
||||||
|
return getJson(j);
|
||||||
|
} catch {}
|
||||||
|
}
|
||||||
|
|
||||||
|
const a = await fetchxmlvideo();
|
||||||
|
return a;
|
||||||
}
|
}
|
||||||
|
|
||||||
async function ryd() {
|
async function ryd() {
|
||||||
|
Loading…
Reference in New Issue
Block a user