diff options
author | Abyss777 <abyss@fox5.ru> | 2016-07-29 15:50:59 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-07-29 15:50:59 +0500 |
commit | 20c2456a9df46eaef04c787ea5471bf31a71f93c (patch) | |
tree | f8e76fb8f6cf27b0d1b2a9476dcb8436f4e88feb /src/org/traccar/protocol/SuntechProtocolDecoder.java | |
parent | cd0c04a03b359dfc5b1ea3f61b93aaae8f6fec3e (diff) | |
download | trackermap-server-20c2456a9df46eaef04c787ea5471bf31a71f93c.tar.gz trackermap-server-20c2456a9df46eaef04c787ea5471bf31a71f93c.tar.bz2 trackermap-server-20c2456a9df46eaef04c787ea5471bf31a71f93c.zip |
Organized alarms in the first part of protocols
Diffstat (limited to 'src/org/traccar/protocol/SuntechProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/SuntechProtocolDecoder.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/traccar/protocol/SuntechProtocolDecoder.java b/src/org/traccar/protocol/SuntechProtocolDecoder.java index 5169e7c67..503f4d6f8 100644 --- a/src/org/traccar/protocol/SuntechProtocolDecoder.java +++ b/src/org/traccar/protocol/SuntechProtocolDecoder.java @@ -68,7 +68,7 @@ public class SuntechProtocolDecoder extends BaseProtocolDecoder { if (parser.hasNext()) { String type = parser.next(); if (type.equals("Alert") || type.equals("Emergency")) { - position.set(Position.KEY_ALARM, true); + position.set(Position.KEY_ALARM, Position.ALARM_GENERAL); } } |