Removed superfluous console logs.

This commit is contained in:
DebaucheryLibrarian 2023-07-06 05:40:23 +02:00
parent 8bb46c5a6d
commit f8e7ace89f
1 changed files with 0 additions and 5 deletions

View File

@ -256,8 +256,6 @@ async function scrapeSceneData(data, channel, options) {
release.channel = data.site;
release.stars = data.rating;
console.log(release);
return release;
}
@ -355,12 +353,9 @@ async function fetchGraphqlScene(release, channel) {
});
if (res.ok) {
console.log(res.body.data.searchVideos.edges);
return res.body.data?.searchVideos?.edges?.find((edge) => edge.node.slug === slug)?.node || null;
}
console.log(res.body);
return null;
}