PosterPath=tv.PosterPath.Contains("http:")?tv.PosterPath.Replace("http:","https:"):tv.PosterPath,// We make the poster path https on request, but this is just incase
PosterPath=tv.PosterPath?.Contains("http:")??false?tv.PosterPath?.Replace("http:","https:"):tv.PosterPath??string.Empty,// We make the poster path https on request, but this is just incase