Skip to content

Commit

Permalink
scraper: fix RealJamVR Release Date (xbapps#1219)
Browse files Browse the repository at this point in the history
  • Loading branch information
toshski authored Apr 6, 2023
1 parent 0411617 commit faa6d95
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 @@ -78,7 +78,7 @@ func RealJamVR(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out ch

// Released
e.ForEach(`.bi-calendar3`, func(id int, e *colly.HTMLElement) {
p := e.DOM.Parent()
p := e.DOM.Parent().Next()
d, err := goment.New(p.Text(), "MMM DD, YYYY")
if err != nil {
log.Infof("%v", err)
Expand Down

0 comments on commit faa6d95

Please sign in to comment.