Update mangabuddy/mangabuddy.js

This commit is contained in:
aka paul 2025-11-30 19:10:13 +00:00
parent 207fd44e71
commit 8837e62fc7

View file

@ -10,7 +10,7 @@ async function searchContent(keyword, page=0) {
while ((match = regex.exec(html)) !== null) { while ((match = regex.exec(html)) !== null) {
results.push({ results.push({
id: "https://mangabuddy.com" + match[1].trim(), id: "https://mangabuddy.com" + match[1].trim(),
imageURL: "https://passthrough-worker.simplepostrequest.workers.dev/?simple=" + match[2].trim() + "?referrer=https://mangabuddy.com", imageURL: "https://passthrough-worker.simplepostrequest.workers.dev/?simple=" + match[2].trim() + "?referer=https://mangabuddy.com",
title: match[3].replace(/<[^>]+>/g, '').trim() title: match[3].replace(/<[^>]+>/g, '').trim()
}); });
} }
@ -89,7 +89,7 @@ async function getChapterImages(url) {
const match = regex.exec(html); const match = regex.exec(html);
if (match) { if (match) {
const images = match[1].split(','); const images = match[1].split(',');
const processedImages = images.map(img => "https://passthrough-worker.simplepostrequest.workers.dev/?simple=" + img.trim() + "?referrer=https://mangabuddy.com"); const processedImages = images.map(img => "https://passthrough-worker.simplepostrequest.workers.dev/?simple=" + img.trim() + "?referer=https://mangabuddy.com");
results.push(...processedImages); results.push(...processedImages);
} }