Fixes mobile wifi stats timestamp value type.
This commit is contained in:
parent
11f2e7291e
commit
aca0469bd0
|
@ -144,8 +144,7 @@ class WiFiStatsModule
|
||||||
JSONObject result = new JSONObject();
|
JSONObject result = new JSONObject();
|
||||||
result.put("rssi", rssi)
|
result.put("rssi", rssi)
|
||||||
.put("signal", signalLevel)
|
.put("signal", signalLevel)
|
||||||
.put("timestamp",
|
.put("timestamp", System.currentTimeMillis());
|
||||||
String.valueOf(System.currentTimeMillis()));
|
|
||||||
|
|
||||||
JSONArray addresses = new JSONArray();
|
JSONArray addresses = new JSONArray();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue