Returning window.document instead of element as document from q. Fixed actor collisions when scrapers return same scene multiple times. Scraping all Score actor release pages. Fixed 21Sextury and PureTaboo photo scraping.

This commit is contained in:
2020-02-05 23:57:55 +01:00
parent 75dbe2548a
commit d4801bb240
6 changed files with 36 additions and 13 deletions

View File

@@ -69,7 +69,7 @@ async function scrapeScene(html, url, site) {
src: `${videoData.playerOptions.host}${videoData.url}`,
};
release.photos = await getPhotos(q('.picturesItem a').href, 'puretaboo.com', site);
release.photos = await getPhotos(q('.picturesItem a').href, site);
return release;
}