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);
+ });
+ }