Skip to content

Commit 34c4cfa

Browse files
committed
Solve the trailing 'Taga' issue
1 parent 15d77e7 commit 34c4cfa

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

engine/fzmovies.go

+3-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,6 @@ func (engine *FzEngine) parseSingleMovie(el *colly.HTMLElement, index int) (Movi
8080
if err != nil {
8181
log.Fatal(err)
8282
}
83-
// download link is current link path + /download
8483
downloadLink.Path = path.Join(engine.BaseURL.Path, downloadLink.Path)
8584

8685
movie.DownloadLink = downloadLink
@@ -104,6 +103,9 @@ func (engine *FzEngine) updateDownloadProps(downloadCollector *colly.Collector,
104103
dl := strings.TrimPrefix(stringsub[0], "(")
105104
movie.Size = dl
106105
}
106+
if strings.HasSuffix(movie.Title, "Tags") {
107+
movie.Title = strings.TrimSuffix(movie.Title, "Tags")
108+
}
107109
downloadCollector.Visit(downloadLink.String())
108110
})
109111

0 commit comments

Comments
 (0)