mirror of https://github.com/caronc/apprise
properly escape subtitle in Spontit integration
parent
5f945ceef7
commit
b322e24b1b
|
@ -365,7 +365,8 @@ class NotifySpontit(NotifyBase):
|
||||||
|
|
||||||
# Support MacOS subtitle option
|
# Support MacOS subtitle option
|
||||||
if 'subtitle' in results['qsd'] and len(results['qsd']['subtitle']):
|
if 'subtitle' in results['qsd'] and len(results['qsd']['subtitle']):
|
||||||
results['subtitle'] = results['qsd']['subtitle']
|
results['subtitle'] = \
|
||||||
|
NotifySpontit.unquote(results['qsd']['subtitle'])
|
||||||
|
|
||||||
# Support the 'to' variable so that we can support targets this way too
|
# Support the 'to' variable so that we can support targets this way too
|
||||||
# The 'to' makes it easier to use yaml configuration
|
# The 'to' makes it easier to use yaml configuration
|
||||||
|
|
Loading…
Reference in New Issue