fix null check

This commit is contained in:
liamcottle
2024-08-26 18:28:26 +12:00
parent 96ee4667e6
commit 4cb41c3a56

View File

@ -3935,7 +3935,7 @@
// get position precision in meters
const positionPrecisionInMeters = getPositionPrecisionInMeters(positionPrecision);
if(positionPrecision == null){
if(positionPrecisionInMeters == null){
return "?";
}