Fixed: Grab/Import fields for Discord notifications being duplicated

This commit is contained in:
Mark McDowall 2020-10-18 19:24:21 -07:00
parent f701adaef5
commit e90e144ebc
2 changed files with 4 additions and 4 deletions

View File

@ -138,7 +138,7 @@ namespace NzbDrone.Core.Notifications.Discord
{
embed.Thumbnail = new DiscordImage
{
Url = series.Images.FirstOrDefault(x => x.CoverType == MediaCoverTypes.Poster).Url
Url = series.Images.FirstOrDefault(x => x.CoverType == MediaCoverTypes.Poster)?.Url
};
}
@ -146,7 +146,7 @@ namespace NzbDrone.Core.Notifications.Discord
{
embed.Image = new DiscordImage
{
Url = series.Images.FirstOrDefault(x => x.CoverType == MediaCoverTypes.Fanart).Url
Url = series.Images.FirstOrDefault(x => x.CoverType == MediaCoverTypes.Fanart)?.Url
};
}

View File

@ -19,8 +19,8 @@ namespace NzbDrone.Core.Notifications.Discord
public DiscordSettings()
{
//Set Default Fields
GrabFields = new List<int> { 0, 1, 2, 3, 5, 6, 7, 8, 9 };
ImportFields = new List<int> { 0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12 };
GrabFields = new [] { 0, 1, 2, 3, 5, 6, 7, 8, 9 };
ImportFields = new [] { 0, 1, 2, 3, 4, 6, 7, 8, 9, 10, 11, 12 };
}
private static readonly DiscordSettingsValidator Validator = new DiscordSettingsValidator();