Skip to content

Commit

Permalink
scraper: fix duplicating filenames for StasyQVR (#1755)
Browse files Browse the repository at this point in the history
scraper: fix duplicating filenames
  • Loading branch information
theRealKLH authored Jul 2, 2024
1 parent b28ee65 commit cd09d3f
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion pkg/scrape/stasyqvr.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,6 @@ func StasyQVR(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out cha
base = strings.Replace(base, "\"", "", -1)
if !funk.ContainsString(sc.Filenames, base) {
sc.Filenames = append(sc.Filenames, base)
sc.Filenames = append(sc.Filenames, strings.Replace(base, "original_", "original_"+sc.SiteID, -1))
}
})

Expand Down

0 comments on commit cd09d3f

Please sign in to comment.