From 4cb41c3a56623a42791c34b028cfb8cdef89649d Mon Sep 17 00:00:00 2001 From: liamcottle Date: Mon, 26 Aug 2024 18:28:26 +1200 Subject: [PATCH] fix null check --- src/public/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/public/index.html b/src/public/index.html index 724a844..dcd4fce 100644 --- a/src/public/index.html +++ b/src/public/index.html @@ -3935,7 +3935,7 @@ // get position precision in meters const positionPrecisionInMeters = getPositionPrecisionInMeters(positionPrecision); - if(positionPrecision == null){ + if(positionPrecisionInMeters == null){ return "?"; }