From 37bc54e01e91b4f6e7721fa9e1f9127f14e84792 Mon Sep 17 00:00:00 2001 From: Ruud Date: Fri, 21 Mar 2014 13:32:36 +0100 Subject: [PATCH] Add title to boxcar2 message closes #2977 --- couchpotato/core/notifications/boxcar2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/couchpotato/core/notifications/boxcar2.py b/couchpotato/core/notifications/boxcar2.py index 3e19c19b..04ce4f38 100644 --- a/couchpotato/core/notifications/boxcar2.py +++ b/couchpotato/core/notifications/boxcar2.py @@ -25,7 +25,7 @@ class Boxcar2(Notification): data = { 'user_credentials': self.conf('token'), - 'notification[title]': toUnicode(message), + 'notification[title]': toUnicode('%s - %s' % (self.default_title, message)), 'notification[long_message]': toUnicode(long_message), }