1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-02-25 15:43:08 +00:00

Make year nullable for trakt

This commit is contained in:
Devin Buhl 2017-01-28 17:27:53 -05:00
parent 8a0820ad1e
commit e8065d07b3

View file

@ -57,7 +57,7 @@ public TraktParser(TraktSettings settings)
Title = movie.movie.title,
ImdbId = movie.movie.ids.imdb,
TmdbId = movie.movie.ids.tmdb,
Year = movie.movie.year
Year = (movie.movie.year ?? 0)
});
}