diff options
author | Hans van den Elsen <hans.elsen@esds.nl> | 2016-02-15 07:28:03 +0100 |
---|---|---|
committer | Hans van den Elsen <hans.elsen@esds.nl> | 2016-02-15 07:28:03 +0100 |
commit | 3ced99384b1967f5cde9abdf30c1c0184a5ae3f6 (patch) | |
tree | 14f0543b9a2607be8be7f140a78ac521f8646d7e /src/org/traccar/protocol/MiniFinderProtocolEncoder.java | |
parent | 30d886b86bb76dc7e3a13cffb63252d31f0abe2a (diff) | |
download | trackermap-server-3ced99384b1967f5cde9abdf30c1c0184a5ae3f6.tar.gz trackermap-server-3ced99384b1967f5cde9abdf30c1c0184a5ae3f6.tar.bz2 trackermap-server-3ced99384b1967f5cde9abdf30c1c0184a5ae3f6.zip |
Polishing up the custom commands for MiniFinder
Renamed Command.CUSTOM to TYPE_CUSTOM.
Put the raw command in the 'raw' attribute instead as the key for one.
Diffstat (limited to 'src/org/traccar/protocol/MiniFinderProtocolEncoder.java')
-rw-r--r-- | src/org/traccar/protocol/MiniFinderProtocolEncoder.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/org/traccar/protocol/MiniFinderProtocolEncoder.java b/src/org/traccar/protocol/MiniFinderProtocolEncoder.java index 5d15bc54a..729c57573 100644 --- a/src/org/traccar/protocol/MiniFinderProtocolEncoder.java +++ b/src/org/traccar/protocol/MiniFinderProtocolEncoder.java @@ -27,8 +27,8 @@ public class MiniFinderProtocolEncoder extends StringProtocolEncoder { protected Object encodeCommand(Command command) { switch (command.getType()) { - case Command.CUSTOM: - return command.getAttributes().keySet().iterator().next().toString(); + case Command.TYPE_CUSTOM: + return command.getAttributes().get("raw"); default: Log.warning(new UnsupportedOperationException(command.getType())); break; |