From 2a3d94023bd7be016f2cf230d1170c4867218ca9 Mon Sep 17 00:00:00 2001 From: OpportunityLiu Date: Fri, 15 Sep 2023 20:27:10 +0800 Subject: [PATCH] fix: load taggroup --- src/shared/ehentai/get-tag-groups.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/ehentai/get-tag-groups.ts b/src/shared/ehentai/get-tag-groups.ts index 4c54316e..dfb27859 100644 --- a/src/shared/ehentai/get-tag-groups.ts +++ b/src/shared/ehentai/get-tag-groups.ts @@ -16,7 +16,7 @@ export async function getTagGroups(): Promise { continue; } const matches = response.matchAll( - /(\w+):([-. \w]+)<\/a>/g, + /(\w+):([-. \w]+)<\/a>/g, ); for (const match of matches) { const id = Number.parseInt(match[1]);