mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-11 15:56:07 -07:00
Fix subject UTF-8 encode for Prowl notifier
This commit is contained in:
parent
ede07595c3
commit
112811f3e2
1 changed files with 1 additions and 1 deletions
|
@ -505,7 +505,7 @@ class PROWL(object):
|
|||
|
||||
data = {'apikey': plexpy.CONFIG.PROWL_KEYS,
|
||||
'application': 'PlexPy',
|
||||
'event': event,
|
||||
'event': event.encode("utf-8"),
|
||||
'description': message.encode("utf-8"),
|
||||
'priority': plexpy.CONFIG.PROWL_PRIORITY}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue