Fixed: Sending Slack notifications without an icon

This commit is contained in:
Mark McDowall 2017-07-05 09:16:50 -07:00
commit 197febe9db
No known key found for this signature in database
GPG key ID: D4CEFA9A718052E0

View file

@ -115,15 +115,18 @@ namespace NzbDrone.Core.Notifications.Slack
Attachments = attachments Attachments = attachments
}; };
if (icon.IsNotNullOrWhiteSpace())
{
// Set the correct icon based on the value // Set the correct icon based on the value
if (icon.StartsWith(":") && icon.EndsWith(":")) if (icon.StartsWith(":") && icon.EndsWith(":"))
{ {
payload.IconEmoji = icon; payload.IconEmoji = icon;
} }
else if (icon.IsNotNullOrWhiteSpace()) else
{ {
payload.IconUrl = icon; payload.IconUrl = icon;
} }
}
return payload; return payload;
} }