From 7760dfcc7f3a6dcd775dbada718aef1e0c0d722d Mon Sep 17 00:00:00 2001 From: Johan Kiviniemi Date: Sat, 5 Apr 2014 16:57:56 +0300 Subject: [PATCH] Notification: summary is not optional Use the summary field instead of body. --- Annex/Notification.hs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Annex/Notification.hs b/Annex/Notification.hs index 06a099888b..4793c9537c 100644 --- a/Annex/Notification.hs +++ b/Annex/Notification.hs @@ -71,7 +71,7 @@ notifyDrop (Just _) _ = noop mkNote :: String -> Notify.Note mkNote desc = Notify.blankNote { Notify.appName = "git-annex" - , Notify.body = Just $ Notify.Text desc + , Notify.summary = desc , Notify.hints = [ Notify.Category Notify.Transfer , Notify.Urgency Notify.Low