Changed --inspect to --report to avoid conflict with Node's own debug tools.

This commit is contained in:
DebaucheryLibrarian
2020-12-02 21:26:55 +01:00
parent f5939c81d3
commit be1821b9eb
5 changed files with 6 additions and 7 deletions

View File

@@ -29,7 +29,6 @@ function scrapeAllA(scenes, channel) {
release.tags = query.cnts('.tags a');
release.rating = query.number('.thumb-rating');
console.log(release);
return release;
});
}
@@ -63,7 +62,6 @@ function scrapeSceneA({ query }, url, channel) {
release.trailer = query.url('a[href*="get_file/"], .download a');
console.log(release);
return release;
}