diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2013-01-16 22:15:14 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2013-01-16 22:15:14 +1300 |
commit | 2276cfdcf4c2cedf5bef33ca0a68446b70aacb33 (patch) | |
tree | e4c111340d2af64d84e2cd567993c271bd41b534 /src/org/traccar/protocol/ProgressProtocolDecoder.java | |
parent | fd98c290b185ef51220527aeb7c69df8845c549b (diff) | |
download | trackermap-server-2276cfdcf4c2cedf5bef33ca0a68446b70aacb33.tar.gz trackermap-server-2276cfdcf4c2cedf5bef33ca0a68446b70aacb33.tar.bz2 trackermap-server-2276cfdcf4c2cedf5bef33ca0a68446b70aacb33.zip |
Another progress fix
Diffstat (limited to 'src/org/traccar/protocol/ProgressProtocolDecoder.java')
-rw-r--r-- | src/org/traccar/protocol/ProgressProtocolDecoder.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/org/traccar/protocol/ProgressProtocolDecoder.java b/src/org/traccar/protocol/ProgressProtocolDecoder.java index 525aff49e..d3f582225 100644 --- a/src/org/traccar/protocol/ProgressProtocolDecoder.java +++ b/src/org/traccar/protocol/ProgressProtocolDecoder.java @@ -65,7 +65,7 @@ public class ProgressProtocolDecoder extends BaseProtocolDecoder { /** * Hack to load last index from database */ - /*private void loadLastIndex() { + private void loadLastIndex() { try { Properties p = getServerManager().getProperties(); AdvancedConnection connection = new AdvancedConnection( @@ -79,7 +79,7 @@ public class ProgressProtocolDecoder extends BaseProtocolDecoder { } } catch(Exception error) { } - }*/ + } /** * Request archive messages @@ -127,7 +127,7 @@ public class ProgressProtocolDecoder extends BaseProtocolDecoder { } // Position - else if (/*deviceId != 0 &&*/ (type == MSG_POINT || type == MSG_ALARM || type == MSG_LOGMSG)) { + else if (deviceId != 0 && (type == MSG_POINT || type == MSG_ALARM || type == MSG_LOGMSG)) { List<Position> positions = new LinkedList<Position>(); int recordCount = 1; |