diff --git a/src/Ombi.Core/Engine/V2/TvSearchEngineV2.cs b/src/Ombi.Core/Engine/V2/TvSearchEngineV2.cs index 2b0b8b17e..d7dd393b4 100644 --- a/src/Ombi.Core/Engine/V2/TvSearchEngineV2.cs +++ b/src/Ombi.Core/Engine/V2/TvSearchEngineV2.cs @@ -149,9 +149,19 @@ namespace Ombi.Core.Engine.V2 if (!string.IsNullOrEmpty(item.Images?.Medium)) { - item.Images.Medium = item.Images.Medium.Replace("http", "https"); + item.Images.Medium = item.Images.Medium.Replace("http:", "https:"); } + if (item.Cast?.Any() ?? false) + { + foreach (var cast in item.Cast) + { + if (!string.IsNullOrEmpty(cast.Character?.Image?.Medium)) + { + cast.Character.Image.Medium = cast.Character?.Image?.Medium.Replace("http:", "https:"); + } + } + } return await GetExtraInfo(showInfoTask, item); } diff --git a/src/Ombi/ClientApp/src/app/media-details/components/movie/movie-details.component.html b/src/Ombi/ClientApp/src/app/media-details/components/movie/movie-details.component.html index d6668a8ca..51006ca9a 100644 --- a/src/Ombi/ClientApp/src/app/media-details/components/movie/movie-details.component.html +++ b/src/Ombi/ClientApp/src/app/media-details/components/movie/movie-details.component.html @@ -28,6 +28,8 @@ + + @@ -72,9 +74,7 @@
- - - + diff --git a/src/Ombi/wwwroot/translations/en.json b/src/Ombi/wwwroot/translations/en.json index 00961492f..53034b280 100644 --- a/src/Ombi/wwwroot/translations/en.json +++ b/src/Ombi/wwwroot/translations/en.json @@ -225,6 +225,7 @@ "RequestAllAlbums": "Request All Albums", "ClearSelection": "Clear Selection", "RequestSelectedAlbums": "Request Selected Albums", + "ViewCollection":"View Collection", "Casts": { "CastTitle": "Cast", "Character": "Character",