forked from DebaucheryLibrarian/traxxx
Further data fixes for ECG in ElevatedX scraper and seed file.
This commit is contained in:
parent
3e17021057
commit
a9a6e89d1f
|
@ -3886,8 +3886,8 @@ const sites = [
|
|||
url: 'https://exploitedcollegegirls.com',
|
||||
parent: 'exploitedx',
|
||||
parameters: {
|
||||
latest: 'https://exploitedcollegegirls.com/site/categories/movies_{page}_d.html',
|
||||
profile: 'https://exploitedcollegegirls.com/site/models/{actorSlug}.html',
|
||||
latest: 'https://exploitedcollegegirls.com/categories/movies_{page}_d.html',
|
||||
profile: 'https://exploitedcollegegirls.com/models/{actorSlug}.html',
|
||||
},
|
||||
},
|
||||
{
|
||||
|
@ -3896,8 +3896,8 @@ const sites = [
|
|||
url: 'https://backroomcastingcouch.com',
|
||||
parent: 'exploitedx',
|
||||
parameters: {
|
||||
latest: 'https://backroomcastingcouch.com/site/categories/movies_{page}_d.html',
|
||||
profile: 'https://backroomcastingcouch.com/site/models/{actorSlug}.html',
|
||||
latest: 'https://backroomcastingcouch.com/categories/movies_{page}_d.html',
|
||||
profile: 'https://backroomcastingcouch.com/models/{actorSlug}.html',
|
||||
},
|
||||
},
|
||||
{
|
||||
|
|
|
@ -137,8 +137,8 @@ function scrapeSceneClassic({ query, html }, url, channel) {
|
|||
function scrapeSceneTubular({ query, html }, entity, url, baseRelease) {
|
||||
const release = {};
|
||||
|
||||
release.title = query.q('.trailer-section-head .section-title, .title-block .section-title', true);
|
||||
release.description = query.text('.update-info-block .description');
|
||||
release.title = query.q('.video-player .section-title', true) || query.q('.bio-section-head .section-title', true);
|
||||
release.description = query.text('.update-info-block .descriptionFull') || query.text('.update-info-block .description');
|
||||
|
||||
release.date = query.date('.update-info-row', 'MMM D, YYYY', /\w+ \d{1,2}, \d{4}/);
|
||||
release.duration = query.dur('.update-info-row:nth-child(2)');
|
||||
|
|
Loading…
Reference in New Issue