update
Fetch and Save Remote Content / fetch (push) Successful in 39s
Sync Versions to index.json / sync-versions (push) Failing after 54s

This commit is contained in:
aka paul
2026-05-27 20:30:23 +02:00
parent caffaabc88
commit 597f279e49
113 changed files with 1207 additions and 980 deletions
+1 -2
View File
@@ -58,7 +58,7 @@ async function extractEpisodes(url) {
const html = await response.text();
const episodes = [];
const episodeRegex = /<a[^>]+id="([^"]+)"[^>]*>[\s\S]*?<div class='[^']*watch2 bc'[^>]*>(\d+)<\/div>/g;
const episodeRegex = /<a[^>]+id="([^"]+)"[^>]*>[\s\S]*?<div class='watch2[^']*'>(\d+)<\/div>/g;
let match;
while ((match = episodeRegex.exec(html)) !== null) {
@@ -75,7 +75,6 @@ async function extractEpisodes(url) {
episodes.reverse();
console.log(episodes);
return JSON.stringify(episodes);
}