mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-07-30 11:38:32 -07:00
Fixed #3599 and moved the collections button to a more suitable location
This commit is contained in:
parent
636de044ef
commit
e1265046b5
3 changed files with 15 additions and 4 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue