1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 20:12:41 +02:00

Fixed: Default a Movie object with Empty Ratings

This commit is contained in:
Qstick 2020-10-11 01:26:53 -04:00
parent f637976530
commit 3986433884

View File

@ -21,6 +21,7 @@ public Movie()
Translations = new List<MovieTranslation>();
Recommendations = new List<int>();
OriginalLanguage = Language.English;
Ratings = new Ratings();
}
public int TmdbId { get; set; }