From 622dc6d0616deb749eca387e0fed6e55e944e91b Mon Sep 17 00:00:00 2001 From: aka paul <50n50@noreply.localhost> Date: Sat, 29 Nov 2025 19:15:10 +0000 Subject: [PATCH] Update comix/comix.js --- comix/comix.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comix/comix.js b/comix/comix.js index c8a6d95..fd09aee 100644 --- a/comix/comix.js +++ b/comix/comix.js @@ -5,8 +5,8 @@ async function searchContent(keyword, page = 0) { const results = data.result.items.map(manga => ({ title: manga.title, - image: manga.poster.large, - href: manga.hash_id + "-" + manga.slug + imageURL: manga.poster.large, + id: manga.hash_id + "-" + manga.slug })); return results;