Compare commits
2 Commits
b20cf53645
...
dfa0183669
Author | SHA1 | Date |
---|---|---|
|
dfa0183669 | |
|
944f091ca5 |
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.77.5",
|
"version": "1.77.6",
|
||||||
"lockfileVersion": 1,
|
"lockfileVersion": 1,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "traxxx",
|
"name": "traxxx",
|
||||||
"version": "1.77.5",
|
"version": "1.77.6",
|
||||||
"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": {
|
||||||
|
|
|
@ -88,7 +88,10 @@ async function scrapeScene(html, url) {
|
||||||
if (photosUrl) {
|
if (photosUrl) {
|
||||||
release.photos = await fetchPhotos(photosUrl);
|
release.photos = await fetchPhotos(photosUrl);
|
||||||
} else {
|
} else {
|
||||||
release.photos = qis('img[src*=ThumbNails]');
|
release.photos = qis('img[src*=ThumbNails], .p-photos .tn img').map(photo => [
|
||||||
|
photo.replace('_tn', ''),
|
||||||
|
photo,
|
||||||
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
const trailer = qt();
|
const trailer = qt();
|
||||||
|
|
Loading…
Reference in New Issue