aboutsummaryrefslogtreecommitdiff
path: root/src/org/traccar/notification/NotificationSms.java
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-03-02 12:16:17 +0500
committerAbyss777 <abyss@fox5.ru>2017-03-02 12:16:17 +0500
commit5a964d4adf67d2f49b58f0b14d4388d7aa2353d2 (patch)
tree54a3ddde7b08557ed2aa5bb0dfd35385b1242908 /src/org/traccar/notification/NotificationSms.java
parent5012663d8688fa521fa7de02116f42ddbb57e7fb (diff)
downloadtrackermap-server-5a964d4adf67d2f49b58f0b14d4388d7aa2353d2.tar.gz
trackermap-server-5a964d4adf67d2f49b58f0b14d4388d7aa2353d2.tar.bz2
trackermap-server-5a964d4adf67d2f49b58f0b14d4388d7aa2353d2.zip
Implement sms commands
Diffstat (limited to 'src/org/traccar/notification/NotificationSms.java')
-rw-r--r--src/org/traccar/notification/NotificationSms.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/notification/NotificationSms.java b/src/org/traccar/notification/NotificationSms.java
index cb5dd563a..7b265e3ce 100644
--- a/src/org/traccar/notification/NotificationSms.java
+++ b/src/org/traccar/notification/NotificationSms.java
@@ -35,7 +35,7 @@ public final class NotificationSms {
User user = Context.getPermissionsManager().getUser(userId);
if (Context.getSmppManager() != null && user.getPhone() != null) {
Context.getSmppManager().sendMessageAsync(user.getPhone(),
- NotificationFormatter.formatSmsMessage(userId, event, position));
+ NotificationFormatter.formatSmsMessage(userId, event, position), false);
}
}
@@ -44,7 +44,7 @@ public final class NotificationSms {
User user = Context.getPermissionsManager().getUser(userId);
if (Context.getSmppManager() != null && user.getPhone() != null) {
Context.getSmppManager().sendMessageSync(user.getPhone(),
- NotificationFormatter.formatSmsMessage(userId, event, position));
+ NotificationFormatter.formatSmsMessage(userId, event, position), false);
}
}
}