aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/org/traccar/notificators
diff options
context:
space:
mode:
authorAndreas <andreas-huth@freenet.de>2020-03-01 23:36:54 +0100
committerAndreas <andreas-huth@freenet.de>2020-03-01 23:36:54 +0100
commit39a2742121de3e016655e9fc5d5ba886e1ab900b (patch)
treec028971b6cd8a06fa79df5f8b7d1c5416d46d2f3 /src/main/java/org/traccar/notificators
parent1ab53d1f4911e349370542b23a5fa3fe69be7dcc (diff)
downloadtraccar-server-39a2742121de3e016655e9fc5d5ba886e1ab900b.tar.gz
traccar-server-39a2742121de3e016655e9fc5d5ba886e1ab900b.tar.bz2
traccar-server-39a2742121de3e016655e9fc5d5ba886e1ab900b.zip
comment too long
Diffstat (limited to 'src/main/java/org/traccar/notificators')
-rw-r--r--src/main/java/org/traccar/notificators/NotificatorPushover.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/main/java/org/traccar/notificators/NotificatorPushover.java b/src/main/java/org/traccar/notificators/NotificatorPushover.java
index 21da1f8d5..29455b1a6 100644
--- a/src/main/java/org/traccar/notificators/NotificatorPushover.java
+++ b/src/main/java/org/traccar/notificators/NotificatorPushover.java
@@ -54,7 +54,8 @@ public class NotificatorPushover extends Notificator {
// see https://pushover.net/api
token = Context.getConfig().getString("notificator.pushover.token"); // (required) token from pushover.net
user = Context.getConfig().getString("notificator.pushover.user"); // (required) user from pushover.net
- device = Context.getConfig().getString("notificator.pushover.device",""); // optional: your user's device name to send the message directly to that device, rather than all of the user's devices (multiple devices may be separated by a comma)
+ device = Context.getConfig().getString("notificator.pushover.device",""); // optional: your user's device name to send the message directly
+ // to that device, rather than all of the user's devices (multiple devices may be separated by a comma)
title = Context.getConfig().getString("notificator.pushover.title",""); // optional: your message's title, otherwise your app's name is used
}