From f19aff35897043a91ed60ea45a0f52d39823a917 Mon Sep 17 00:00:00 2001 From: lifegpc Date: Sun, 28 Jan 2024 14:07:24 +0800 Subject: [PATCH] Fix fetchHomeOverviewPage --- client.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.ts b/client.ts index 2715990..d0d02f8 100644 --- a/client.ts +++ b/client.ts @@ -221,7 +221,7 @@ export class Client { * @returns null if not logged in */ async fetchHomeOverviewPage() { - const url = `https://${this.host}/home.php`; + const url = `https://e-hentai.org/home.php`; const re = await this.get(url); if (re.redirected) { const u = new URL(re.url);