Skip to content

Commit

Permalink
scraper: Fix VRSpy scene id (xbapps#1819)
Browse files Browse the repository at this point in the history
  • Loading branch information
toshski authored Aug 28, 2024
1 parent 03452b8 commit 3519670
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/scrape/vrspy.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ func VRSpy(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out chan<-
sc.Site = siteID
sc.HomepageURL = e.Request.URL.String()

ogimage := e.ChildAttr(`meta[property="og:image"]`, "content")
ogimage := e.ChildAttr(`meta[property="og:image"][content*="cover.jpg"]`, "content")
if ogimage != "" {
ogimageURL, err := url.Parse(ogimage)
if err == nil {
Expand Down

0 comments on commit 3519670

Please sign in to comment.