Skip to content

Commit

Permalink
Fixed filenames for NA scraper (#427)
Browse files Browse the repository at this point in the history
  • Loading branch information
theRealKLH authored Mar 13, 2021
1 parent ca73557 commit cc75f79
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/scrape/navr.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ func NaughtyAmericaVR(wg *sync.WaitGroup, updateSite bool, knownScenes []string,
baseName := base[5] + base[6]
defaultBaseName := "nam" + base[6]

filenames := []string{"_180x180_3dh.mp4", "_smartphonevr60.mp4", "_smartphonevr30.mp4", "_vrdesktopsd.mp4", "_vrdesktophd.mp4", "_180_sbs.mp4", "_180x180_3dh.mp4"}
filenames := []string{"_180x180_3dh.mp4", "_smartphonevr60.mp4", "_smartphonevr30.mp4", "_vrdesktopsd.mp4", "_vrdesktophd.mp4", "_180_sbs.mp4", "_6kvr264.mp4", "_6kvr265.mp4"}

for i := range filenames {
sc.Filenames = append(sc.Filenames, baseName+filenames[i], defaultBaseName+filenames[i])
Expand All @@ -84,7 +84,7 @@ func NaughtyAmericaVR(wg *sync.WaitGroup, updateSite bool, knownScenes []string,
baseName := base[5] + base[6]
defaultBaseName := "nam" + base[6]

filenames := []string{"_180x180_3dh.mp4", "_smartphonevr00.mp4", "_smartphonevr60.mp4", "_smartphonevr30.mp4", "_vrdesktopsd.mp4", "_vrdesktophd.mp4", "_180_sbs.mp4", "_6kvr264.mp4", "_6kvr265.mp4"}
filenames := []string{"_180x180_3dh.mp4", "_smartphonevr60.mp4", "_smartphonevr30.mp4", "_vrdesktopsd.mp4", "_vrdesktophd.mp4", "_180_sbs.mp4", "_6kvr264.mp4", "_6kvr265.mp4"}

for i := range filenames {
sc.Filenames = append(sc.Filenames, baseName+filenames[i], defaultBaseName+filenames[i])
Expand Down

0 comments on commit cc75f79

Please sign in to comment.