1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-02-02 04:21:43 +00:00

FIX: Fixed Boxcar2 notification error

This commit is contained in:
evilhero 2014-08-08 02:52:38 -04:00
parent 001c30a310
commit 21260c4ee2

View file

@ -225,7 +225,7 @@ class BOXCAR:
data = urllib.urlencode({
'user_credentials': mylar.BOXCAR_TOKEN,
'notification[title]': title.encode('utf-8').strip(),
'notification[long_message]': message.encode('utf-8'),
'notification[long_message]': msg.encode('utf-8'),
'notification[sound]': "done"
})