mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-11 07:46:05 -07:00
Use HTTPS for the poster images, so there aren't any mixed content
warnings when serving the application via an HTTPS reverse proxy
This commit is contained in:
parent
605878700d
commit
01a2bb3adc
3 changed files with 3 additions and 3 deletions
|
@ -473,7 +473,7 @@ namespace PlexRequests.UI.Modules
|
|||
Type = RequestType.Movie,
|
||||
Overview = movieInfo.Overview,
|
||||
ImdbId = movieInfo.ImdbId,
|
||||
PosterPath = "http://image.tmdb.org/t/p/w150/" + movieInfo.PosterPath,
|
||||
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