From 152361447c6b9f3a545602c7d5a19a7fcdc669c7 Mon Sep 17 00:00:00 2001 From: Dangrainage <99558179+Dangrainage@users.noreply.github.com> Date: Thu, 25 Apr 2024 08:52:50 +0200 Subject: [PATCH] Update Tester.HTML --- Tester.HTML | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/Tester.HTML b/Tester.HTML index aad2e8f..bb465f4 100644 --- a/Tester.HTML +++ b/Tester.HTML @@ -43,14 +43,32 @@ let listItem = document.createElement('li'); let link = document.createElement('a'); link.textContent = `${result.title} (${result.year})`; - link.href = result.link; // Assuming there's a 'link' property in the dictionary - link.target = '_blank'; // Open link in a new tab + link.href = "#"; // Set a placeholder href + link.addEventListener('click', function(event) { + event.preventDefault(); + generateDynamic(result.link); + }); listItem.appendChild(link); resultList.appendChild(listItem); }); searchResultsDiv.appendChild(resultList); } } + + 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); + }); + }