Further data fixes for ECG in ElevatedX scraper and seed file.

This commit is contained in:
DebaucheryLibrarian 2024-09-08 03:26:16 +02:00
parent 3e17021057
commit a9a6e89d1f
2 changed files with 6 additions and 6 deletions

View File

@ -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',
},
},
{

View File

@ -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)');