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();
|
||||
result.put("rssi", rssi)
|
||||
.put("signal", signalLevel)
|
||||
.put("timestamp",
|
||||
String.valueOf(System.currentTimeMillis()));
|
||||
.put("timestamp", System.currentTimeMillis());
|
||||
|
||||
JSONArray addresses = new JSONArray();
|
||||
|
||||
|
|
Loading…
Reference in New Issue