diff options
author | Andreas <andreas-huth@freenet.de> | 2020-03-01 23:44:23 +0100 |
---|---|---|
committer | Andreas <andreas-huth@freenet.de> | 2020-03-01 23:44:23 +0100 |
commit | 4a7a3b59c39bcfe9a6d7ed11b27074d7c1f6b418 (patch) | |
tree | 6236377c4024f8a7633c374954196f68e9b6c58f /src/main | |
parent | 39a2742121de3e016655e9fc5d5ba886e1ab900b (diff) | |
download | trackermap-server-4a7a3b59c39bcfe9a6d7ed11b27074d7c1f6b418.tar.gz trackermap-server-4a7a3b59c39bcfe9a6d7ed11b27074d7c1f6b418.tar.bz2 trackermap-server-4a7a3b59c39bcfe9a6d7ed11b27074d7c1f6b418.zip |
comment too long
Diffstat (limited to 'src/main')
-rw-r--r-- | src/main/java/org/traccar/notificators/NotificatorPushover.java | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/main/java/org/traccar/notificators/NotificatorPushover.java b/src/main/java/org/traccar/notificators/NotificatorPushover.java index 29455b1a6..734e38eb9 100644 --- a/src/main/java/org/traccar/notificators/NotificatorPushover.java +++ b/src/main/java/org/traccar/notificators/NotificatorPushover.java @@ -54,9 +54,11 @@ 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 + 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 + title = Context.getConfig().getString("notificator.pushover.title",""); // optional: your message's title, + // otherwise your app's name is used } @Override |