Fixed Kink deep scrape photos. Fixed favicon ratio in compact scene tile. Hiding scroll buttons on small screens.

This commit is contained in:
DebaucheryLibrarian
2021-01-19 15:58:27 +01:00
parent f39270ee91
commit a95e409366
6 changed files with 15 additions and 6 deletions

View File

@@ -43,7 +43,7 @@ async function scrapeScene({ query }, url) {
release.actors = query.all('.names a', true).map(actor => actor.replace(/,\s*/, ''));
release.director = query.q('.director-name', true);
release.photos = query.imgs('.gallery .thumb img', 'data-image-file');
release.photos = query.imgs('.gallery .thumb img, #gallerySlider .gallery-img', 'data-image-file');
release.poster = query.poster();
release.tags = query.all('.tag-list a[href*="/tag"]', true).map(tag => tag.replace(/,\s*/, ''));