Compare commits
2 Commits
176573733b
...
63f0410c5c
| Author | SHA1 | Date |
|---|---|---|
|
|
63f0410c5c | |
|
|
2aa323427b |
|
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.246.20",
|
"version": "1.246.21",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.246.20",
|
"version": "1.246.21",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@aws-sdk/client-s3": "^3.458.0",
|
"@aws-sdk/client-s3": "^3.458.0",
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.246.20",
|
"version": "1.246.21",
|
||||||
"description": "All the latest porn releases in one place",
|
"description": "All the latest porn releases in one place",
|
||||||
"main": "src/app.js",
|
"main": "src/app.js",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
||||||
|
|
@ -2715,9 +2715,14 @@ const sites = [
|
||||||
{
|
{
|
||||||
name: 'Wild On Cam',
|
name: 'Wild On Cam',
|
||||||
slug: 'wildoncam',
|
slug: 'wildoncam',
|
||||||
url: 'https://cherrypimps.com/series/wild-on-cam.html',
|
// url: 'https://cherrypimps.com/series/wild-on-cam.html',
|
||||||
|
url: 'https://wildoncam.com',
|
||||||
alias: ['woc'],
|
alias: ['woc'],
|
||||||
parent: 'cherrypimps',
|
parent: 'cherrypimps',
|
||||||
|
parameters: {
|
||||||
|
// allow native URLs to match
|
||||||
|
slug: 'wild-on-cam',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'Cherry of the Month',
|
name: 'Cherry of the Month',
|
||||||
|
|
|
||||||
|
|
@ -13,7 +13,7 @@ function scrapeAll(scenes) {
|
||||||
const { pathname } = new URL(url);
|
const { pathname } = new URL(url);
|
||||||
|
|
||||||
release.url = url;
|
release.url = url;
|
||||||
release.entryId = pathname.match(/\/trailers\/(\d+).*.html/)[1];
|
release.entryId = pathname.match(/\/trailers\/(.*)?.html/)[1]?.toLowerCase(); // almost all slugs start with an ID, but not all
|
||||||
|
|
||||||
release.title = query.content('.item-title a');
|
release.title = query.content('.item-title a');
|
||||||
|
|
||||||
|
|
@ -50,7 +50,7 @@ function scrapeScene({ query }, url, _channel, baseRelease) {
|
||||||
const release = { url };
|
const release = { url };
|
||||||
const { pathname } = new URL(url);
|
const { pathname } = new URL(url);
|
||||||
|
|
||||||
release.entryId = pathname.match(/\/trailers\/(\d+).*.html/)[1];
|
release.entryId = pathname.match(/\/trailers\/(.*)?.html/)[1].toLowerCase();
|
||||||
|
|
||||||
release.title = query.content('.item-title h1');
|
release.title = query.content('.item-title h1');
|
||||||
release.description = query.content('.update-info-block p');
|
release.description = query.content('.update-info-block p');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue