Fixed the mixed content warnings and the error when removing a album request #2884

This commit is contained in:
tidusjar 2019-04-06 23:56:55 +01:00
parent c556334f79
commit 6dccea77c2
4 changed files with 10 additions and 9 deletions

View file

@ -152,7 +152,8 @@ namespace Ombi.Core.Engine
Rating = a.ratings?.value ?? 0m,
ReleaseDate = a.releaseDate,
Title = a.title,
Disk = a.images?.FirstOrDefault(x => x.coverType.Equals("disc"))?.url
Disk = a.images?.FirstOrDefault(x => x.coverType.Equals("disc"))?.url?.Replace("http","https"),
Genres = a.genres
};
if (a.artistId > 0)
{
@ -169,7 +170,7 @@ namespace Ombi.Core.Engine
vm.ArtistName = a.artist?.artistName;
}
vm.Cover = a.images?.FirstOrDefault(x => x.coverType.Equals("cover"))?.url;
vm.Cover = a.images?.FirstOrDefault(x => x.coverType.Equals("cover"))?.url?.Replace("http", "https");
if (vm.Cover.IsNullOrEmpty())
{
vm.Cover = a.remoteCover;