Added another place to make sure we have the correct poster paths !minor

pull/1614/head
Jamie.Rees 7 years ago
parent 9261232bab
commit 727c7be9f2

@ -64,7 +64,7 @@ namespace Ombi.Core.Engine
RequestType = RequestType.Movie, RequestType = RequestType.Movie,
Overview = movieInfo.Overview, Overview = movieInfo.Overview,
ImdbId = movieInfo.ImdbId, ImdbId = movieInfo.ImdbId,
PosterPath = PosterPathHelper.FixPosterPath(movieInfo.PosterPath.TrimStart('/')), PosterPath = PosterPathHelper.FixPosterPath(movieInfo.PosterPath),
Title = movieInfo.Title, Title = movieInfo.Title,
ReleaseDate = !string.IsNullOrEmpty(movieInfo.ReleaseDate) ReleaseDate = !string.IsNullOrEmpty(movieInfo.ReleaseDate)
? DateTime.Parse(movieInfo.ReleaseDate) ? DateTime.Parse(movieInfo.ReleaseDate)
@ -80,7 +80,7 @@ namespace Ombi.Core.Engine
{ {
return new RequestEngineResult return new RequestEngineResult
{ {
ErrorMessage = ruleResults.FirstOrDefault(x => !string.IsNullOrEmpty(x.Message)).Message ErrorMessage = ruleResults.FirstOrDefault(x => x.Message.HasValue()).Message
}; };
} }
@ -117,6 +117,7 @@ namespace Ombi.Core.Engine
public async Task<IEnumerable<MovieRequests>> GetRequests(int count, int position) public async Task<IEnumerable<MovieRequests>> GetRequests(int count, int position)
{ {
var allRequests = await MovieRepository.Get().Skip(position).Take(count).ToListAsync(); var allRequests = await MovieRepository.Get().Skip(position).Take(count).ToListAsync();
allRequests.ForEach(x => PosterPathHelper.FixPosterPath(x.PosterPath));
return allRequests; return allRequests;
} }

Loading…
Cancel
Save