From 868a4c260536d6ef432e11982aebedd75d6ef2ce Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Sun, 30 Nov 2025 19:12:51 +0000 Subject: [PATCH] Update mangabuddy/mangabuddy.js --- mangabuddy/mangabuddy.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mangabuddy/mangabuddy.js b/mangabuddy/mangabuddy.js index eb11df1..63d1864 100644 --- a/mangabuddy/mangabuddy.js +++ b/mangabuddy/mangabuddy.js @@ -10,7 +10,7 @@ async function searchContent(keyword, page=0) { while ((match = regex.exec(html)) !== null) { results.push({ id: "https://mangabuddy.com" + match[1].trim(), - imageURL: "https://passthrough-worker.simplepostrequest.workers.dev/?simple=" + match[2].trim() + "?referer=https://mangabuddy.com", + imageURL: "https://passthrough-worker.simplepostrequest.workers.dev/?simple=" + match[2].trim() + "&referer=https://mangabuddy.com", title: match[3].replace(/<[^>]+>/g, '').trim() }); } @@ -89,7 +89,7 @@ async function getChapterImages(url) { const match = regex.exec(html); if (match) { const images = match[1].split(','); - const processedImages = images.map(img => "https://passthrough-worker.simplepostrequest.workers.dev/?simple=" + img.trim() + "?referer=https://mangabuddy.com"); + const processedImages = images.map(img => "https://passthrough-worker.simplepostrequest.workers.dev/?simple=" + img.trim() + "&referer=https://mangabuddy.com"); results.push(...processedImages); }