mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
Fix #612
This commit is contained in:
parent
42c437905e
commit
877e0fa8fb
1 changed files with 1 additions and 1 deletions
|
@ -481,7 +481,7 @@ namespace PlexRequests.UI.Modules
|
|||
Type = RequestType.Movie,
|
||||
Overview = movieInfo.Overview,
|
||||
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,
|
||||
ReleaseDate = movieInfo.ReleaseDate ?? DateTime.MinValue,
|
||||
Status = movieInfo.Status,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue