mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 15:56:05 -07:00
fix #612 again
This commit is contained in:
parent
9e9df87d17
commit
06089bc30e
2 changed files with 2 additions and 1 deletions
1
PlexRequests.UI/Content/requests.js
vendored
1
PlexRequests.UI/Content/requests.js
vendored
|
@ -5,6 +5,7 @@
|
||||||
return !opts ? null : opts.inverse(this);
|
return !opts ? null : opts.inverse(this);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
var searchSource = $("#search-template").html();
|
var searchSource = $("#search-template").html();
|
||||||
var albumSource = $("#album-template").html();
|
var albumSource = $("#album-template").html();
|
||||||
var searchTemplate = Handlebars.compile(searchSource);
|
var searchTemplate = Handlebars.compile(searchSource);
|
||||||
|
|
|
@ -488,7 +488,7 @@ namespace PlexRequests.UI.Modules
|
||||||
Type = RequestType.Movie,
|
Type = RequestType.Movie,
|
||||||
Overview = movieInfo.Overview,
|
Overview = movieInfo.Overview,
|
||||||
ImdbId = movieInfo.ImdbId,
|
ImdbId = movieInfo.ImdbId,
|
||||||
PosterPath = movieInfo.PosterPath.Contains("image.tmdb.org") ? movieInfo.PosterPath : "https://image.tmdb.org/t/p/w150/" + movieInfo.PosterPath,
|
PosterPath = movieInfo.PosterPath,
|
||||||
Title = movieInfo.Title,
|
Title = movieInfo.Title,
|
||||||
ReleaseDate = movieInfo.ReleaseDate ?? DateTime.MinValue,
|
ReleaseDate = movieInfo.ReleaseDate ?? DateTime.MinValue,
|
||||||
Status = movieInfo.Status,
|
Status = movieInfo.Status,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue