From 5bf9b069fc10b611c1306d6e6fde9d0f8a5ec577 Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Wed, 27 Jul 2016 11:26:50 -0700 Subject: [PATCH] Fixed: Slack Icon is optional --- src/NzbDrone.Core/Notifications/Slack/SlackSettings.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/NzbDrone.Core/Notifications/Slack/SlackSettings.cs b/src/NzbDrone.Core/Notifications/Slack/SlackSettings.cs index e92d37504..f64daddb5 100644 --- a/src/NzbDrone.Core/Notifications/Slack/SlackSettings.cs +++ b/src/NzbDrone.Core/Notifications/Slack/SlackSettings.cs @@ -11,7 +11,6 @@ namespace NzbDrone.Core.Notifications.Slack { RuleFor(c => c.WebHookUrl).IsValidUrl(); RuleFor(c => c.Username).NotEmpty(); - RuleFor(c => c.Icon).NotEmpty(); } }