@@ -73,23 +73,23 @@ func CzechVR(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out chan
73
73
})
74
74
75
75
// Tags
76
- e .ForEach (`div.post div.tagyall div.tag` ,func (id int ,e * colly.HTMLElement ) {
76
+ e .ForEach (`div.post div#info div#Tagy.tagy div.tag` ,func (id int ,e * colly.HTMLElement ) {
77
77
sc .Tags = append (sc .Tags ,strings .TrimSpace (e .Text ))
78
78
})
79
79
80
80
// Cast
81
- e .ForEach (`div.post div.featuring > a ` ,func (id int ,e * colly.HTMLElement ) {
81
+ e .ForEach (`div.post div#info div.modelky a span ` ,func (id int ,e * colly.HTMLElement ) {
82
82
sc .Cast = append (sc .Cast ,strings .TrimSpace (e .Text ))
83
83
})
84
84
85
85
// Date
86
- e .ForEach (`div.post div.nazev div.datumDetail ` ,func (id int ,e * colly.HTMLElement ) {
86
+ e .ForEach (`div.post div#info div.datum ` ,func (id int ,e * colly.HTMLElement ) {
87
87
tmpDate ,_ := goment .New (e .Text ,"MMM DD, YYYY" )
88
88
sc .Released = tmpDate .Format ("YYYY-MM-DD" )
89
89
})
90
90
91
91
// Duration
92
- e .ForEach (`div.post div.nazev div.casDetail span.desktop ` ,func (id int ,e * colly.HTMLElement ) {
92
+ e .ForEach (`div.post div#info div.cas ` ,func (id int ,e * colly.HTMLElement ) {
93
93
tmpDuration ,err := strconv .Atoi (strings .Split (e .Text ,":" )[0 ])
94
94
95
95
if err == nil {
@@ -98,8 +98,10 @@ func CzechVR(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out chan
98
98
})
99
99
100
100
if config .Config .Funscripts .ScrapeFunscripts {
101
- e .ForEach (`div.interactive` ,func (id int ,e * colly.HTMLElement ) {
102
- sc .HasScriptDownload = true
101
+ e .ForEach (`div.post div#info div#VideoTagy.tagy div.tag` ,func (id int ,e * colly.HTMLElement ) {
102
+ if strings .TrimSpace (e .Text )== "Interactive" {
103
+ sc .HasScriptDownload = true
104
+ }
103
105
})
104
106
}
105
107
@@ -113,7 +115,7 @@ func CzechVR(wg *sync.WaitGroup, updateSite bool, knownScenes []string, out chan
113
115
}
114
116
115
117
// Filenames
116
- e .ForEach (`div.post div. downloada.trailer ` ,func (id int ,e * colly.HTMLElement ) {
118
+ e .ForEach (`div.post div# downloaddiv.dlnew a ` ,func (id int ,e * colly.HTMLElement ) {
117
119
if id == 0 {
118
120
tmp := strings .Split (e .Attr ("href" ),"/" )
119
121
parts := strings .Split (tmp [len (tmp )- 1 ],"-" )