Update Tester.HTML
This commit is contained in:
parent
152361447c
commit
425311ce6a
1 changed files with 16 additions and 12 deletions
28
Tester.HTML
28
Tester.HTML
|
@ -56,18 +56,22 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
function generateDynamic(href) {
|
function generateDynamic(href) {
|
||||||
fetch(`https://filmer.anorak01.top/vid/${href.split("//")[1]}`)
|
if (href) {
|
||||||
.then(response => response.json())
|
fetch(`https://filmer.anorak01.top/vid/${href.split("//")[1]}`)
|
||||||
.then(data => {
|
.then(response => response.json())
|
||||||
if (data.url) {
|
.then(data => {
|
||||||
window.location.href = data.url; // Redirect to the generated link
|
if (data.url) {
|
||||||
} else {
|
window.location.href = data.url; // Redirect to the generated link
|
||||||
console.error('Error: Unable to fetch video link');
|
} else {
|
||||||
}
|
console.error('Error: Unable to fetch video link');
|
||||||
})
|
}
|
||||||
.catch(error => {
|
})
|
||||||
console.error('Error:', error);
|
.catch(error => {
|
||||||
});
|
console.error('Error:', error);
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
console.error('Error: No valid link provided');
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
Loading…
Add table
Reference in a new issue