From f1c007c5fed22fd656858a62c3392c4ecbab5dbc Mon Sep 17 00:00:00 2001 From: Mark McDowall Date: Sat, 18 Jun 2016 10:57:18 -0700 Subject: [PATCH] Include full grab/import message for Slack notifications --- src/NzbDrone.Core/Notifications/Slack/Slack.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/NzbDrone.Core/Notifications/Slack/Slack.cs b/src/NzbDrone.Core/Notifications/Slack/Slack.cs index cddc98c83..203d0d7ec 100644 --- a/src/NzbDrone.Core/Notifications/Slack/Slack.cs +++ b/src/NzbDrone.Core/Notifications/Slack/Slack.cs @@ -40,7 +40,7 @@ namespace NzbDrone.Core.Notifications.Slack { IconEmoji = Settings.Icon, Username = Settings.Username, - Text = "Grabbed", + Text = $"Grabbed: {message.Message}", Attachments = new List { new Attachment @@ -62,7 +62,7 @@ namespace NzbDrone.Core.Notifications.Slack { IconEmoji = Settings.Icon, Username = Settings.Username, - Text = "Downloaded", + Text = $"Imported: {message.Message}", Attachments = new List { new Attachment