Fix subject UTF-8 encode for Prowl notifier

This commit is contained in:
Jonathan Wong 2015-12-02 19:18:04 -08:00
parent ede07595c3
commit 112811f3e2

View file

@ -505,7 +505,7 @@ class PROWL(object):
data = {'apikey': plexpy.CONFIG.PROWL_KEYS, data = {'apikey': plexpy.CONFIG.PROWL_KEYS,
'application': 'PlexPy', 'application': 'PlexPy',
'event': event, 'event': event.encode("utf-8"),
'description': message.encode("utf-8"), 'description': message.encode("utf-8"),
'priority': plexpy.CONFIG.PROWL_PRIORITY} 'priority': plexpy.CONFIG.PROWL_PRIORITY}