diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2017-03-05 20:05:55 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-05 20:05:55 +1300 |
commit | 8163115306af5f82a3c7664daf03e375da3f6a3d (patch) | |
tree | 3d52b57791001ca91737c2ab20284cef7b1a0792 /src/org/traccar/notification/NotificationSms.java | |
parent | 644d9c440eb193dabeb14ad81c838dbb824bb950 (diff) | |
parent | 075307c35605cb6ad9ebbdf547fee8e649507098 (diff) | |
download | trackermap-server-8163115306af5f82a3c7664daf03e375da3f6a3d.tar.gz trackermap-server-8163115306af5f82a3c7664daf03e375da3f6a3d.tar.bz2 trackermap-server-8163115306af5f82a3c7664daf03e375da3f6a3d.zip |
Merge pull request #2971 from Abyss777/sms_commands
Implement SMS commands
Diffstat (limited to 'src/org/traccar/notification/NotificationSms.java')
-rw-r--r-- | src/org/traccar/notification/NotificationSms.java | 4 |
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); } } } |