Skip to content

Commit

Permalink
Merge branch 'rj_012024_1' into RFTW
Browse files Browse the repository at this point in the history
  • Loading branch information
theRealKLH committed Jan 12, 2024
2 parents 51cf8e3 + 8870180 commit 141871d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/scrape/realjamvr.go
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func RealJamSite(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out

// Cast
sc.ActorDetails = make(map[string]models.ActorDetails)
e.ForEach(`div.scene-view a[href^='/actor/']`, func(id int, e *colly.HTMLElement) {
e.ForEach(`div.scene-view > a[href^='/actor/']`, func(id int, e *colly.HTMLElement) {
sc.Cast = append(sc.Cast, strings.TrimSpace(e.Text))
sc.ActorDetails[strings.TrimSpace(e.Text)] = models.ActorDetails{Source: sc.ScraperID + " scrape", ProfileUrl: e.Request.AbsoluteURL(e.Attr("href"))}
})
Expand Down

0 comments on commit 141871d

Please sign in to comment.