This commit is contained in:
parent
e4990bd24e
commit
b2b0e3a917
@ -139,8 +139,8 @@ func matchYear(fileName string) (int, string) {
|
||||
if len(years) == 0 {
|
||||
return -1, fileName
|
||||
}
|
||||
|
||||
year, err := strconv.Atoi(years[len(years)-1])
|
||||
// get last year occurance and cut first and last char
|
||||
year, err := strconv.Atoi(years[len(years)-1][1 : len(years)-1])
|
||||
|
||||
if err != nil {
|
||||
return -1, fileName
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user