Compare commits
2 Commits
b20cf53645
...
dfa0183669
Author | SHA1 | Date |
---|---|---|
|
dfa0183669 | |
|
944f091ca5 |
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.77.5",
|
||||
"version": "1.77.6",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.77.5",
|
||||
"version": "1.77.6",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -88,7 +88,10 @@ async function scrapeScene(html, url) {
|
|||
if (photosUrl) {
|
||||
release.photos = await fetchPhotos(photosUrl);
|
||||
} 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();
|
||||
|
|
Loading…
Reference in New Issue