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;