forked from DebaucheryLibrarian/traxxx
Added Private scraper. Added Vixen scraper to repository.
This commit is contained in:
@@ -65,8 +65,10 @@ async function scrapeScene(html, url, shootId, ratingRes, site) {
|
||||
|
||||
const rawTags = $('.tag-list > a[href*="/tag"]').map((tagIndex, tagElement) => $(tagElement).text()).toArray();
|
||||
|
||||
const channelSite = await knex('sites').where({ id: sitename }).first();
|
||||
const tags = await matchTags(rawTags);
|
||||
const [channelSite, tags] = await Promise.all([
|
||||
knex('sites').where({ id: sitename }).first(),
|
||||
matchTags(rawTags),
|
||||
]);
|
||||
|
||||
return {
|
||||
url,
|
||||
|
||||
Reference in New Issue
Block a user