mirror of
https://github.com/louislam/uptime-kuma.git
synced 2024-11-09 23:24:07 -08:00
fix: sends pushover ttl only if defined
This commit is contained in:
parent
8d05d80a5f
commit
a0d0d5b015
|
@ -16,7 +16,6 @@ class Pushover extends NotificationProvider {
|
|||
"sound": notification.pushoversounds,
|
||||
"priority": notification.pushoverpriority,
|
||||
"title": notification.pushovertitle,
|
||||
"ttl": notification.pushoverttl,
|
||||
"retry": "30",
|
||||
"expire": "3600",
|
||||
"html": 1,
|
||||
|
@ -25,6 +24,9 @@ class Pushover extends NotificationProvider {
|
|||
if (notification.pushoverdevice) {
|
||||
data.device = notification.pushoverdevice;
|
||||
}
|
||||
if (notification.pushoverttl) {
|
||||
data.ttl = notification.pushoverttl;
|
||||
}
|
||||
|
||||
try {
|
||||
if (heartbeatJSON == null) {
|
||||
|
|
Loading…
Reference in a new issue