Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Ombi/commit/877e0fa8fbb215523f113e12e1ebf2296b385983 You should set ROOT_URL correctly, otherwise the web may not work correctly.
pull/618/head
Jamie.Rees 9 years ago
parent 42c437905e
commit 877e0fa8fb

@ -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…
Cancel
Save