Skip to content

Commit

Permalink
fix: load taggroup
Browse files Browse the repository at this point in the history
  • Loading branch information
OpportunityLiu committed Sep 15, 2023
1 parent 6500f8f commit 2a3d940
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shared/ehentai/get-tag-groups.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export async function getTagGroups(): Promise<MasterTag[]> {
continue;
}
const matches = response.matchAll(
/<a href="https:\/\/repo\.e-hentai\.org\/tools\/taggroup?mastertag=(\d+)">(\w+):([-. \w]+)<\/a>/g,
/<a href="https:\/\/repo\.e-hentai\.org\/tools\/taggroup\?mastertag=(\d+)">(\w+):([-. \w]+)<\/a>/g,
);
for (const match of matches) {
const id = Number.parseInt(match[1]);
Expand Down

0 comments on commit 2a3d940

Please sign in to comment.