From 1d741b60329846a8eb064bbe9be33939fd90a751 Mon Sep 17 00:00:00 2001 From: error7404 <48163201+error7404@users.noreply.github.com> Date: Mon, 27 Oct 2025 20:24:48 +0100 Subject: [PATCH] Novel Hall: - fix formatting (#1488) --- plugins/english/novelhall.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/english/novelhall.ts b/plugins/english/novelhall.ts index 155d76772..1d1a5cc33 100644 --- a/plugins/english/novelhall.ts +++ b/plugins/english/novelhall.ts @@ -6,7 +6,7 @@ import { defaultCover } from '@libs/defaultCover'; class NovelHall implements Plugin.PluginBase { id = 'novelhall'; name = 'Novel Hall'; - version = '1.0.2'; + version = '1.0.3'; icon = 'src/en/novelhall/icon.png'; site = 'https://novelhall.com/'; @@ -85,7 +85,7 @@ class NovelHall implements Plugin.PluginBase { async parseChapter(chapterPath: string): Promise { const body = await fetchApi(this.site + chapterPath).then(r => r.text()); const loadedCheerio = parseHTML(body); - const chapterText = loadedCheerio('.content').html() || ''; + const chapterText = loadedCheerio('#htmlContent').html() || ''; return chapterText; }