forked from DebaucheryLibrarian/traxxx
Fixed Kink Men Test Shoots slug.
This commit is contained in:
parent
5784178716
commit
eb759a0dec
|
@ -78,7 +78,7 @@
|
|||
"tunnel": "0.0.6",
|
||||
"ua-parser-js": "^1.0.32",
|
||||
"undici": "^4.13.0",
|
||||
"unprint": "^0.8.0",
|
||||
"unprint": "^0.8.1",
|
||||
"url-pattern": "^1.0.3",
|
||||
"v-tooltip": "^2.0.3",
|
||||
"video.js": "^7.11.4",
|
||||
|
@ -17008,9 +17008,9 @@
|
|||
}
|
||||
},
|
||||
"node_modules/unprint": {
|
||||
"version": "0.8.0",
|
||||
"resolved": "https://registry.npmjs.org/unprint/-/unprint-0.8.0.tgz",
|
||||
"integrity": "sha512-PBVdumsc7DfLwwTeSD5xSqITj3PFTUr/wA4unUykzov05YMp0a+Z3tVM1H7JFLZuRgzHRfKDbEpvAcj8vfYlLA==",
|
||||
"version": "0.8.1",
|
||||
"resolved": "https://registry.npmjs.org/unprint/-/unprint-0.8.1.tgz",
|
||||
"integrity": "sha512-6cF2LgIpc7JEBBXWs/CmJgFBAPmvM5NuD3tDvmnnmZR+wrEF03TNR5kv08iPTV/GhT8EHPhZM3LSd8eRipkWdA==",
|
||||
"dependencies": {
|
||||
"axios": "^0.27.2",
|
||||
"bottleneck": "^2.19.5",
|
||||
|
@ -31462,9 +31462,9 @@
|
|||
"integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw="
|
||||
},
|
||||
"unprint": {
|
||||
"version": "0.8.0",
|
||||
"resolved": "https://registry.npmjs.org/unprint/-/unprint-0.8.0.tgz",
|
||||
"integrity": "sha512-PBVdumsc7DfLwwTeSD5xSqITj3PFTUr/wA4unUykzov05YMp0a+Z3tVM1H7JFLZuRgzHRfKDbEpvAcj8vfYlLA==",
|
||||
"version": "0.8.1",
|
||||
"resolved": "https://registry.npmjs.org/unprint/-/unprint-0.8.1.tgz",
|
||||
"integrity": "sha512-6cF2LgIpc7JEBBXWs/CmJgFBAPmvM5NuD3tDvmnnmZR+wrEF03TNR5kv08iPTV/GhT8EHPhZM3LSd8eRipkWdA==",
|
||||
"requires": {
|
||||
"axios": "^0.27.2",
|
||||
"bottleneck": "^2.19.5",
|
||||
|
|
|
@ -137,7 +137,7 @@
|
|||
"tunnel": "0.0.6",
|
||||
"ua-parser-js": "^1.0.32",
|
||||
"undici": "^4.13.0",
|
||||
"unprint": "^0.8.0",
|
||||
"unprint": "^0.8.1",
|
||||
"url-pattern": "^1.0.3",
|
||||
"v-tooltip": "^2.0.3",
|
||||
"video.js": "^7.11.4",
|
||||
|
|
|
@ -5243,6 +5243,9 @@ const sites = [
|
|||
url: 'https://www.kinkmen.com/channel/kinkmen-test-shoot',
|
||||
description: 'Featuring must-see videos from our new test shoots.',
|
||||
parent: 'kinkmen',
|
||||
parameters: {
|
||||
slug: 'kinkmentestshoot',
|
||||
},
|
||||
},
|
||||
{
|
||||
slug: 'kinkmenclassics',
|
||||
|
|
|
@ -111,9 +111,9 @@ async function fetchActorReleases(actorUrl, page = 1, accReleases = []) {
|
|||
async function scrapeProfile({ query }, actorUrl, include) {
|
||||
const profile = {};
|
||||
|
||||
profile.description = query.q('.bio #expand-text', true);
|
||||
profile.description = query.content('.bio #expand-text');
|
||||
|
||||
const tags = query.all('.bio-tags a', true);
|
||||
const tags = query.contents('.bio-tags a');
|
||||
|
||||
if (tags.includes('brunette') || tags.includes('brunet')) profile.hairColor = 'brown';
|
||||
if (tags.includes('blonde') || tags.includes('blond')) profile.hairColor = 'blonde';
|
||||
|
|
Loading…
Reference in New Issue