Skip to content

Commit 10e7f6f

Browse files
committed
fix validation error for #2368
1 parent 1ae7171 commit 10e7f6f

File tree

2 files changed

+9
-8
lines changed

2 files changed

+9
-8
lines changed

scrapers/HelixStudios.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ sceneByQueryFragment:
1515
queryURL: "{url}"
1616
scraper: sceneScraper
1717

18-
movieByURL:
18+
groupByURL:
1919
- action: scrapeXPath
2020
url:
2121
- helixstudios.com/movie/
@@ -99,7 +99,7 @@ xPathScrapers:
9999
selector: //span[contains(@class, "studio-name")]/text()
100100

101101
groupScraper:
102-
movie:
102+
group:
103103
Duration:
104104
selector: //span.info-item.duration/text()
105105
postProcess:
@@ -167,4 +167,4 @@ xPathScrapers:
167167
- replace:
168168
- regex: $
169169
with: " "
170-
# Last Updated Feb 08, 2025
170+
# Last Updated October 27, 2025

scrapers/VRLatina.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "VRLatina"
22
sceneByURL:
33
- action: scrapeXPath
4-
url:
4+
url: &urlSel
55
- vrlatina.com/video
66
scraper: sceneScraper
77
groupByURL:
@@ -17,20 +17,21 @@ xPathScrapers:
1717
sceneScraper:
1818
scene:
1919
Title: //meta[@property="og:title"]/@content
20-
Date:
20+
Date: &dateAttr
2121
selector: //div[contains(text(), "Release date:")]/following-sibling::span
2222
postProcess:
2323
- parseDate: Jan 02, 2006
24-
Details: //meta[@property="og:description"]/@content
24+
Details: &detailsSel
25+
selector: //meta[@property="og:description"]/@content
2526
Tags:
2627
Name: //a[@class="tag"]/@title
2728
Performers:
2829
Name: //div[@class="content-links -models"]//a/span
2930
URL: //div[@class="content-links -models"]//a/@href
3031
Studio:
31-
Name:
32+
Name: &studioName
3233
fixed: VRLatina
33-
Image:
34+
Image: &imageSel
3435
selector: //meta[@property="og:image"]/@content
3536
postProcess:
3637
- replace:

0 commit comments

Comments
 (0)