From 425311ce6a0e8da72c853eaa583f4b2f1acc1b79 Mon Sep 17 00:00:00 2001 From: Dangrainage <99558179+Dangrainage@users.noreply.github.com> Date: Thu, 25 Apr 2024 08:53:54 +0200 Subject: [PATCH] Update Tester.HTML --- Tester.HTML | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/Tester.HTML b/Tester.HTML index bb465f4..299eaec 100644 --- a/Tester.HTML +++ b/Tester.HTML @@ -56,18 +56,22 @@ } function generateDynamic(href) { - fetch(`https://filmer.anorak01.top/vid/${href.split("//")[1]}`) - .then(response => response.json()) - .then(data => { - if (data.url) { - window.location.href = data.url; // Redirect to the generated link - } else { - console.error('Error: Unable to fetch video link'); - } - }) - .catch(error => { - console.error('Error:', error); - }); + if (href) { + fetch(`https://filmer.anorak01.top/vid/${href.split("//")[1]}`) + .then(response => response.json()) + .then(data => { + if (data.url) { + window.location.href = data.url; // Redirect to the generated link + } else { + console.error('Error: Unable to fetch video link'); + } + }) + .catch(error => { + console.error('Error:', error); + }); + } else { + console.error('Error: No valid link provided'); + } }