Update animeler/animeler.js

This commit is contained in:
aka paul 2025-11-04 21:26:37 +00:00
parent a70f69559a
commit 9e589f3dc4

View file

@ -31,7 +31,7 @@ async function extractDetails(url) {
const response = await fetchv2(url);
const html = await response.text();
const regex = /<div[^>]*data-synopsis=""[^>]*>([\s\S]*?)<\/div>/;
const regex = /<div\s+class="block\s+w-full[^"]*"[^>]*>(.*?)<\/div>/s;
const match = html.match(regex);
const description = match ? match[1].trim() : "N/A";