Skip to content

Commit 35ac579

Browse files
deven96MeNsaaH
authored andcommitted
Fzmovies: Updated Content Selectors
1 parent a012860 commit 35ac579

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

engine/fzmovies.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -103,9 +103,9 @@ func (engine *FzEngine) updateDownloadProps(downloadCollector *colly.Collector,
103103
})
104104

105105
// Update Download Link if "Download" HTML on page
106-
downloadCollector.OnHTML("p", func(e *colly.HTMLElement) {
107-
if strings.HasSuffix(strings.TrimSpace(e.ChildAttr("input", "value")), "mp4") {
108-
downloadLink, err := url.Parse(e.Request.AbsoluteURL(e.ChildAttr("input", "value")))
106+
downloadCollector.OnHTML("input[name=download1]", func(e *colly.HTMLElement) {
107+
if strings.HasSuffix(strings.TrimSpace(e.Attr("value")), "mp4") {
108+
downloadLink, err := url.Parse(e.Request.AbsoluteURL(e.Attr("value")))
109109
if err != nil {
110110
log.Fatal(err)
111111
}

0 commit comments

Comments
 (0)