mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-15 21:05:48 -04:00
Make year nullable for trakt
This commit is contained in:
@@ -57,7 +57,7 @@ namespace NzbDrone.Core.NetImport.Trakt
|
||||
Title = movie.movie.title,
|
||||
ImdbId = movie.movie.ids.imdb,
|
||||
TmdbId = movie.movie.ids.tmdb,
|
||||
Year = movie.movie.year
|
||||
Year = (movie.movie.year ?? 0)
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user