fix null check
This commit is contained in:
@ -3935,7 +3935,7 @@
|
|||||||
|
|
||||||
// get position precision in meters
|
// get position precision in meters
|
||||||
const positionPrecisionInMeters = getPositionPrecisionInMeters(positionPrecision);
|
const positionPrecisionInMeters = getPositionPrecisionInMeters(positionPrecision);
|
||||||
if(positionPrecision == null){
|
if(positionPrecisionInMeters == null){
|
||||||
return "?";
|
return "?";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user