diff --git a/src/platforms/gal/VikaACG.ts b/src/platforms/gal/VikaACG.ts index 6343b7d..4e9b2b8 100644 --- a/src/platforms/gal/VikaACG.ts +++ b/src/platforms/gal/VikaACG.ts @@ -51,6 +51,12 @@ async function searchVikaACG(game: string): Promise { const matches = html.replaceAll('\\/', '/').replaceAll('\\\\', '\\').matchAll(REGEX); + console.log(JSON.stringify({ + message: "VikaACG API HTML Response", + html: html.replaceAll('\\/', '/').replaceAll('\\\\', '\\'), + level: "info", + })); + const items: SearchResultItem[] = []; for (const match of matches) { if (match.groups?.NAME && match.groups?.URL) { diff --git a/src/platforms/patch/TWOdfan.ts b/src/platforms/patch/TWOdfan.ts index 2bcece6..5fa81c6 100644 --- a/src/platforms/patch/TWOdfan.ts +++ b/src/platforms/patch/TWOdfan.ts @@ -22,12 +22,6 @@ async function searchTWOdfan(game: string): Promise { } const html: string = await response.text(); - - console.log(JSON.stringify({ - message: "2dfan API HTML Response", - html: html, - level: "info", - })); const matches = html.matchAll(REGEX);