diff --git a/animeler/animeler.js b/animeler/animeler.js index 0eb4161..25bdd6e 100644 --- a/animeler/animeler.js +++ b/animeler/animeler.js @@ -31,7 +31,7 @@ async function extractDetails(url) { const response = await fetchv2(url); const html = await response.text(); - const regex = /]*data-synopsis=""[^>]*>([\s\S]*?)<\/div>/; + const regex = /]*>(.*?)<\/div>/s; const match = html.match(regex); const description = match ? match[1].trim() : "N/A";