mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-10 07:22:35 -07:00
Fixed #1038
This commit is contained in:
parent
2e8736de46
commit
cdd995652b
1 changed files with 1 additions and 1 deletions
|
@ -254,7 +254,7 @@ namespace Ombi.UI.Modules
|
||||||
Status = tv.Status,
|
Status = tv.Status,
|
||||||
ImdbId = tv.ImdbId,
|
ImdbId = tv.ImdbId,
|
||||||
Id = tv.Id,
|
Id = tv.Id,
|
||||||
PosterPath = tv.PosterPath.Contains("http:") ? tv.PosterPath.Replace("http:", "https:") : tv.PosterPath, // We make the poster path https on request, but this is just incase
|
PosterPath = tv.PosterPath?.Contains("http:") ?? false ? tv.PosterPath?.Replace("http:", "https:") : tv.PosterPath ?? string.Empty, // We make the poster path https on request, but this is just incase
|
||||||
ReleaseDate = tv.ReleaseDate,
|
ReleaseDate = tv.ReleaseDate,
|
||||||
ReleaseDateTicks = tv.ReleaseDate.Ticks,
|
ReleaseDateTicks = tv.ReleaseDate.Ticks,
|
||||||
RequestedDate = tv.RequestedDate,
|
RequestedDate = tv.RequestedDate,
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue