GitIgnore fixes, DockerFile fixes

This commit is contained in:
Jānis Kacēns
2024-10-07 22:44:45 +03:00
parent 3889e684b4
commit 095e6baff3
60 changed files with 1236 additions and 436 deletions
@@ -109,6 +109,7 @@ public class MovieLogoService : IMovieLogoService
NetworkLogoEnum.Max => "Max.svg",
NetworkLogoEnum.Mtv => "MTV.svg",
NetworkLogoEnum.ChannelFour => "ChannelFour.png",
NetworkLogoEnum.Id => "ID.svg",
_ => throw new ArgumentOutOfRangeException(nameof(logo), logo, null)
};
}
@@ -189,7 +189,7 @@ public class SeriesPosterMakerService : ISeriesPosterMakerService
image2 = new MagickImage(imageWithSeason);
}
if (properties.LimitedSeries == true)
if (properties.LimitedSeries != null && properties.LimitedSeries == true)
{
seasonImages.Add(labels);
readSettings.TextInterlineSpacing = 150;