diff options
author | Johan Kiviniemi <devel@johan.kiviniemi.name> | 2014-04-05 16:57:56 +0300 |
---|---|---|
committer | Johan Kiviniemi <devel@johan.kiviniemi.name> | 2014-04-05 20:44:06 +0300 |
commit | 80d0454ebf1de1050b9065f1f980ac8d59f8f40b (patch) | |
tree | 446fff144e853c05356ab72ccaed789ce24afc2c | |
parent | 37de1fc1863379c4bc8f71210e63530a06ff8335 (diff) |
Notification: summary is not optional
Use the summary field instead of body.
-rw-r--r-- | Annex/Notification.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Annex/Notification.hs b/Annex/Notification.hs index 06a099888..4793c9537 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 |