This commit is contained in:
2021-03-14 17:29:33 +01:00
parent e4990bd24e
commit b2b0e3a917
2 changed files with 7 additions and 2 deletions

View File

@ -63,6 +63,11 @@ func SearchVideo(MovieName string, year int) *VideoTMDB {
fmt.Println(len(t.Results))
// if there was no match with tmdb return 0
if len(t.Results) == 0 {
return nil
}
var tmdbVid tmdbVidResult
if year != -1 {
for _, result := range t.Results {