fix: sends pushover ttl only if defined

This commit is contained in:
Maximilian Krauß 2023-05-16 18:31:28 +02:00 committed by Maximilian Krauß
parent 8d05d80a5f
commit a0d0d5b015

View File

@ -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) {