aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--web/app/view/state/StateController.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/app/view/state/StateController.js b/web/app/view/state/StateController.js
index eeb04bb6d..6b6ccf184 100644
--- a/web/app/view/state/StateController.js
+++ b/web/app/view/state/StateController.js
@@ -84,7 +84,7 @@ Ext.define('Traccar.view.state.StateController', {
}
}
- var xml = '<info><a>aa</a><b>bb</b></info>';//position.get('other');
+ var xml = position.get('other');
var other = this.parseXml(xml);
for (var key in other) {
if (other.hasOwnProperty(key)) {
@@ -100,7 +100,7 @@ Ext.define('Traccar.view.state.StateController', {
},
selectDevice: function(device) {
- this.deviceId = device.get('id');
+ this.deviceId = device.get('deviceId');
var found = Ext.getStore('LiveData').query('deviceId', this.deviceId);
if (found.getCount() > 0) {
this.updatePosition(found.first());