mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-23 06:45:19 -07:00
Make year nullable for trakt
This commit is contained in:
parent
8a0820ad1e
commit
e8065d07b3
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ namespace NzbDrone.Core.NetImport.Trakt
|
||||||
Title = movie.movie.title,
|
Title = movie.movie.title,
|
||||||
ImdbId = movie.movie.ids.imdb,
|
ImdbId = movie.movie.ids.imdb,
|
||||||
TmdbId = movie.movie.ids.tmdb,
|
TmdbId = movie.movie.ids.tmdb,
|
||||||
Year = movie.movie.year
|
Year = (movie.movie.year ?? 0)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue