From 5c9c67f35c3f5da47339ebaccfe247666d17e7ec Mon Sep 17 00:00:00 2001 From: K1ngfish3r <26593485+K1ngfish3r@users.noreply.github.com> Date: Fri, 17 Apr 2026 00:58:05 +0500 Subject: [PATCH] hotfix: novelfire defaults for pageMode --- plugins/english/novelfire.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/english/novelfire.ts b/plugins/english/novelfire.ts index 6104bd09c..679af8e91 100644 --- a/plugins/english/novelfire.ts +++ b/plugins/english/novelfire.ts @@ -9,7 +9,7 @@ import { storage } from '@libs/storage'; class NovelFire implements Plugin.PluginBase { id = 'novelfire'; name = 'Novel Fire'; - version = '1.3.0'; + version = '1.3.1'; icon = 'src/en/novelfire/icon.png'; site = 'https://novelfire.net/'; webStorageUtilized = true; @@ -36,7 +36,7 @@ class NovelFire implements Plugin.PluginBase { }, }; singlePage = storage.get('singlePage'); - pageLength = storage.get('pageLength'); + pageLength = storage.get('pageLength') ?? '-1'; async getCheerio(url: string, search: boolean): Promise { const r = await fetchApi(url);