From 9d89a38490da6488f9742da43ef9ca5a9e9b6622 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Tue, 21 Jul 2020 04:10:16 +0200 Subject: [PATCH] Added actor page scene thumbnails to Hitzefrei scraper. --- src/scrapers/hitzefrei.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/scrapers/hitzefrei.js b/src/scrapers/hitzefrei.js index 8edbfaf8..f8f64c5f 100644 --- a/src/scrapers/hitzefrei.js +++ b/src/scrapers/hitzefrei.js @@ -19,6 +19,7 @@ function scrapeAll(scenes) { release.actors = query.cnts('.content-models a'); release.poster = query.img('.content-thumbnail img, .large-thumbnail img') || query.poster('.content-thumbnail video, .large-thumbnail video'); + release.photos = query.imgs('.small-thumbnails img'); // actor page only const teaser = query.video('.vid-hover source'); release.teaser = { src: teaser };