diff --git a/TMDbLib/Objects/General/TranslationData.cs b/TMDbLib/Objects/General/TranslationData.cs index e3610a44..11b51069 100644 --- a/TMDbLib/Objects/General/TranslationData.cs +++ b/TMDbLib/Objects/General/TranslationData.cs @@ -18,6 +18,14 @@ private string Title [JsonProperty("overview")] public string Overview { get; set; } + // Private hack to ensure two properties (overview, biography) are deserialized into Overview. + // Most of the entities have an overview, but people have a biography. + [JsonProperty("biography")] + private string Biography + { + set => Overview = value; + } + [JsonProperty("homepage")] public string HomePage { get; set; }