mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-14 01:02:57 -07:00
Added a fix for the poster path issue #1533
This commit is contained in:
parent
f5a0572946
commit
462bbcc4a6
2 changed files with 23 additions and 1 deletions
|
@ -64,7 +64,7 @@ namespace Ombi.Core.Engine
|
|||
RequestType = RequestType.Movie,
|
||||
Overview = movieInfo.Overview,
|
||||
ImdbId = movieInfo.ImdbId,
|
||||
PosterPath = movieInfo.PosterPath.TrimStart('/'),
|
||||
PosterPath = PosterPathHelper.FixPosterPath(movieInfo.PosterPath.TrimStart('/')),
|
||||
Title = movieInfo.Title,
|
||||
ReleaseDate = !string.IsNullOrEmpty(movieInfo.ReleaseDate)
|
||||
? DateTime.Parse(movieInfo.ReleaseDate)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue