Skip to content

Commit de33151

Browse files
committed
Check length before obtaining upload date
1 parent 8d4881c commit de33151

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
@@ -70,7 +70,9 @@ func (engine *FzEngine) parseSingleMovie(el *colly.HTMLElement, index int) (Movi
7070
}
7171
movie.CoverPhotoLink = cover.String()
7272
// Remove all Video: or Movie: Prefixes
73-
movie.UploadDate = strings.TrimSpace(el.ChildTexts("small")[1])
73+
if len(el.ChildTexts("small")) >= 2 {
74+
movie.UploadDate = strings.TrimSpace(el.ChildTexts("small")[1])
75+
}
7476
movie.Title = strings.TrimSuffix(strings.TrimSpace(el.ChildText("b")), "<more>")
7577
if len(el.ChildTexts("small")) > 3 {
7678
movie.Description = strings.TrimSpace(el.ChildTexts("small")[3])

0 commit comments

Comments
 (0)