Skip to content

Commit

Permalink
Merge branch 'rj_062024_1' into RFTW
Browse files Browse the repository at this point in the history
  • Loading branch information
theRealKLH committed Jul 5, 2024
2 parents 8e35d42 + 4c3c64a commit 93e6671
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/scrape/realjamvr.go
Original file line number Diff line number Diff line change
Expand Up @@ -120,13 +120,13 @@ func RealJamSite(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out

// Filenames
fileMasktmp := strings.Split(sc.HomepageURL, "/")
fileMask := "RealJamVR-" + fileMasktmp[len(fileMasktmp)-1] + "-Full$res_$fps_LR_180.mp4"
fileMask := strings.Replace(sc.Site, " ", "", -1) + "-" + fileMasktmp[len(fileMasktmp)-1] + "-Full$res_$fps_LR_180.mp4"

// any "/join/" links on the public site will be for for the full movie
uniqueFilenames := make(map[string]bool)
e.ForEach(`a[href='/join/']`, func(id int, e *colly.HTMLElement) {
resolution := ""
fps := ""
fps := "60"
e.ForEach(`div div`, func(id int, e *colly.HTMLElement) {
txt := strings.TrimSpace(e.Text)
if strings.HasPrefix(txt, "Full ") {
Expand Down

0 comments on commit 93e6671

Please sign in to comment.