Compare commits
2 Commits
c0347eed50
...
c1c58f659d
| Author | SHA1 | Date |
|---|---|---|
|
|
c1c58f659d | |
|
|
b79e75349c |
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.172.2",
|
"version": "1.172.3",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.172.2",
|
"version": "1.172.3",
|
||||||
"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": {
|
||||||
|
|
|
||||||
|
|
@ -200,6 +200,8 @@ function scrapeAll(html, site, networkUrl, hasTeaser = true) {
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
console.log(release);
|
||||||
|
|
||||||
return release;
|
return release;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
@ -252,7 +254,10 @@ async function scrapeScene(html, url, site, baseRelease, mobileHtml, options) {
|
||||||
|
|
||||||
const channel = data?.productionCompany?.name
|
const channel = data?.productionCompany?.name
|
||||||
|| $('.studioLink a, .siteLink a').attr('title')?.trim()
|
|| $('.studioLink a, .siteLink a').attr('title')?.trim()
|
||||||
|| $('.siteNameSpan').text()?.trim().toLowerCase().replace('.com', '')
|
|| $('.siteNameSpan').text()
|
||||||
|
?.trim()
|
||||||
|
.toLowerCase()
|
||||||
|
.replace('.com', '')
|
||||||
|| $('meta[name="twitter:domain"]').attr('content')?.replace('.com', '');
|
|| $('meta[name="twitter:domain"]').attr('content')?.replace('.com', '');
|
||||||
|
|
||||||
if (channel) release.channel = slugify(channel, '');
|
if (channel) release.channel = slugify(channel, '');
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue