Removed stray console log from Gamma.

This commit is contained in:
DebaucheryLibrarian 2024-07-09 02:22:05 +02:00
parent d0a4d06cd3
commit acd29a1451
1 changed files with 0 additions and 3 deletions

View File

@ -675,10 +675,7 @@ async function fetchLatestApi(site, page = 1, options, preData, upcoming = false
encodeJSON: true,
});
console.log(res.status);
if (res.status === 200 && res.body.results?.[0]?.hits) {
console.log(res.body.results);
return scrapeApiReleases(res.body.results[0].hits, site, options);
}