pull/3595/head^2
Jamie Rees 4 years ago
parent 863fce38fa
commit 76c5b99c16

@ -146,6 +146,13 @@ namespace Ombi.Core.Engine.V2
item.Approved = oldModel.Approved;
item.SeasonRequests = oldModel.SeasonRequests;
item.RequestId = oldModel.RequestId;
item.Banner = item.Banner.Replace("http", "https");
if (!string.IsNullOrEmpty(item.Images?.Medium))
{
item.Images.Medium = item.Images.Medium.Replace("http", "https");
}
return await GetExtraInfo(showInfoTask, item);
}

@ -1147,6 +1147,7 @@ namespace Ombi.Controllers.V1
{
templates = templates.Where(x => x.NotificationType != NotificationType.WelcomeEmail);
}
var tem = templates.ToList();
return tem.OrderBy(x => x.NotificationType.ToString()).ToList();
}

Loading…
Cancel
Save