From 120399b8bd926e61830a6143c68e4790e85c055c Mon Sep 17 00:00:00 2001 From: MikeZeDev Date: Fri, 13 Jan 2023 12:58:22 +0000 Subject: [PATCH] Neumanga : Fix missing mangas --- src/web/mjs/connectors/NeuManga.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/web/mjs/connectors/NeuManga.mjs b/src/web/mjs/connectors/NeuManga.mjs index d8777acf5e..55773977e5 100644 --- a/src/web/mjs/connectors/NeuManga.mjs +++ b/src/web/mjs/connectors/NeuManga.mjs @@ -10,7 +10,7 @@ export default class NeuManga extends Connector { this.tags = [ 'manga', 'indonesian' ]; this.url = 'https://neumanga.net'; this.path = '/manga-list'; - this.queryMangas = 'div.mangalist-blc ul li.Manhwa a.series'; + this.queryMangas = 'div.mangalist-blc ul li a.series'; this.queryChapters = 'ul.series-chapterlist li div.flexch-infoz a'; this.queryPages = 'div.reader-area p source'; this.queryMangaTitle = 'div.series-title h2';