From e54b4dbef58bb29f0bdbfa58c22821b406f689c2 Mon Sep 17 00:00:00 2001 From: Dave Conway-Jones Date: Sun, 28 Nov 2021 19:38:25 +0000 Subject: [PATCH] Update worldmap.js --- worldmap/worldmap.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/worldmap/worldmap.js b/worldmap/worldmap.js index 92f24a6..47f4b85 100644 --- a/worldmap/worldmap.js +++ b/worldmap/worldmap.js @@ -1340,7 +1340,7 @@ function setMarker(data) { } // console.log("DATA", typeof data, data); - if (data.deleted) { // remove markers we are told to + if (data.deleted == true) { // remove markers we are told to delMarker(data.name); return; }