Update comix/comix.js

This commit is contained in:
aka paul
2026-03-03 18:28:42 +00:00
parent 007c21a192
commit bf095bc654
+1 -1
View File
@@ -107,7 +107,7 @@ async function extractImages(url) {
if (match) {
const imagesJson = '[' + match[1].replace(/\\"/g, '"') + ']';
const images = JSON.parse(imagesJson);
const imageUrls = images.map(img => img.url);
const imageUrls = images.map(img => `https://passthrough-worker.simplepostrequest.workers.dev/?simple=${encodeURIComponent(img.url)}&referer=comix.to`);
results.push(...imageUrls);
return results;
} else {