Solidifed New Sensations entry ID. Updated Four Finger Club to Girl Girl XXX.
This commit is contained in:
@@ -43,7 +43,7 @@ function scrapeLatestClassic(scenes) {
|
||||
: actors;
|
||||
|
||||
// native videothumb entry ID does not occur on scene page, date is not available on all sites
|
||||
release.entryId = slugify([...[].concat(release.actors || []).sort(), release.title]);
|
||||
release.entryId = slugify(release.title.slice(0, 30)); // title is cut-off at about 35 characters, make sure it matches deep scrape. Not all actors listed.
|
||||
|
||||
const photoCount = query.number('.update_thumb', { attribute: 'cnt' });
|
||||
|
||||
@@ -103,7 +103,7 @@ async function scrapeSceneClassic({ query }, context, options) {
|
||||
url: unprint.query.url(actorEl, null),
|
||||
}));
|
||||
|
||||
release.entryId = slugify([...release.actors.map((actor) => actor.name).sort(), release.title]);
|
||||
release.entryId = slugify(release.title.slice(0, 30)); // overview titles are cut off, make sure entry IDs match. Actors don't match front page
|
||||
|
||||
release.tags = query.contents('.update_tags a');
|
||||
release.stars = query.number('.gallery_info', { match: /average\s+rating:\s+(\d+\.\d+)/i, matchIndex: 1 });
|
||||
|
||||
Reference in New Issue
Block a user