Skip to content

Commit 5333cbc

Browse files
committed
Fix rssi display issue
1 parent 4adc526 commit 5333cbc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/tracker.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1075,7 +1075,7 @@ function updateVehicleInfo(vcallsign, newPosition) {
10751075
}
10761076
if(newPosition.callsign[rxcall].hasOwnProperty('rssi')){
10771077
if(newPosition.callsign[rxcall].rssi){
1078-
_new_call += " (" + newPosition.callsign[rxcall].snr.toFixed(0) + " dBm)";
1078+
_new_call += " (" + newPosition.callsign[rxcall].rssi.toFixed(0) + " dBm)";
10791079
callsign_list.push(_new_call)
10801080
continue;
10811081
}

0 commit comments

Comments
 (0)