|
|
@ -481,7 +481,7 @@ namespace PlexRequests.UI.Modules
|
|
|
|
Type = RequestType.Movie,
|
|
|
|
Type = RequestType.Movie,
|
|
|
|
Overview = movieInfo.Overview,
|
|
|
|
Overview = movieInfo.Overview,
|
|
|
|
ImdbId = movieInfo.ImdbId,
|
|
|
|
ImdbId = movieInfo.ImdbId,
|
|
|
|
PosterPath = "https://image.tmdb.org/t/p/w150/" + movieInfo.PosterPath,
|
|
|
|
PosterPath = movieInfo.PosterPath.Contains("image.tmdb.org") ? movieInfo.PosterPath : "https://image.tmdb.org/t/p/w150/" + movieInfo.PosterPath,
|
|
|
|
Title = movieInfo.Title,
|
|
|
|
Title = movieInfo.Title,
|
|
|
|
ReleaseDate = movieInfo.ReleaseDate ?? DateTime.MinValue,
|
|
|
|
ReleaseDate = movieInfo.ReleaseDate ?? DateTime.MinValue,
|
|
|
|
Status = movieInfo.Status,
|
|
|
|
Status = movieInfo.Status,
|
|
|
|