mirror of https://github.com/caronc/apprise
Increased Pushover message limit to 1024 characters (#820)
parent
b5a9c25e86
commit
f1996a1e57
|
@ -165,7 +165,7 @@ class NotifyPushover(NotifyBase):
|
||||||
notify_url = 'https://api.pushover.net/1/messages.json'
|
notify_url = 'https://api.pushover.net/1/messages.json'
|
||||||
|
|
||||||
# The maximum allowable characters allowed in the body per message
|
# The maximum allowable characters allowed in the body per message
|
||||||
body_maxlen = 512
|
body_maxlen = 1024
|
||||||
|
|
||||||
# Default Pushover sound
|
# Default Pushover sound
|
||||||
default_pushover_sound = PushoverSound.PUSHOVER
|
default_pushover_sound = PushoverSound.PUSHOVER
|
||||||
|
|
Loading…
Reference in New Issue