Skip to content

Commit

Permalink
Fixed filenames in Wankz scrapers (xbapps#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
theRealKLH authored Dec 22, 2020
1 parent 34e872d commit 45e0d5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/scrape/wankz.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ func WankzVRSite(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out

// Filenames
base := e.Request.URL.Path
base = strings.Split(strings.Replace(base, "/", "", -1), sc.SiteID)[0]
base = strings.Split(strings.Replace(base, "/", scraperID+"-", -1), sc.SiteID)[0]
sc.Filenames = append(sc.Filenames, base+"180_180x180_3dh_LR.mp4")
sc.Filenames = append(sc.Filenames, base+"gearvr-180_180x180_3dh_LR.mp4")
sc.Filenames = append(sc.Filenames, base+"smartphone-180_180x180_3dh_LR.mp4")
Expand Down

0 comments on commit 45e0d5b

Please sign in to comment.