Skip to content

Commit

Permalink
Fixed release date scraping for MilfVR
Browse files Browse the repository at this point in the history
  • Loading branch information
cld9x committed Aug 4, 2019
1 parent c420c72 commit 0f5dc2d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/scrape/milfvr.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func ScrapeMilfVR(knownScenes []string, out *[]ScrapedScene) error {

// Date
e.ForEach(`i.icon-bell`, func(id int, e *colly.HTMLElement) {
tmpDate, _ := goment.New(e.DOM.Parent().Text(), "DD MMMM, YYYY")
tmpDate, _ := goment.New(e.DOM.Parent().Text(), "DD MMM, YYYY")
sc.Released = tmpDate.Format("YYYY-MM-DD")
})

Expand Down

0 comments on commit 0f5dc2d

Please sign in to comment.