diff --git a/index.html b/index.html
index 913f4b29..304a757e 100644
--- a/index.html
+++ b/index.html
@@ -8118,7 +8118,7 @@
-
+
diff --git a/modules/dynamic/auto-update.js b/modules/dynamic/auto-update.js
index 50e6ed92..10a9a375 100644
--- a/modules/dynamic/auto-update.js
+++ b/modules/dynamic/auto-update.js
@@ -972,5 +972,9 @@ export function resolveVersionConflicts(mapVersion) {
.attr("letter-spacing", null)
.attr("fill", null)
.attr("stroke", null);
+
+ // pole can be missing for some states/provinces
+ BurgsAndStates.getPoles();
+ Provinces.getPoles();
}
}
diff --git a/modules/io/load.js b/modules/io/load.js
index 05819ce7..8e05a798 100644
--- a/modules/io/load.js
+++ b/modules/io/load.js
@@ -471,7 +471,7 @@ async function parseLoadedData(data, mapVersion) {
{
// dynamically import and run auto-update script
- const {resolveVersionConflicts} = await import("../dynamic/auto-update.js?v=1.105.10");
+ const {resolveVersionConflicts} = await import("../dynamic/auto-update.js?v=1.105.24");
resolveVersionConflicts(mapVersion);
}
diff --git a/versioning.js b/versioning.js
index e1d7b9f0..33bc1739 100644
--- a/versioning.js
+++ b/versioning.js
@@ -13,7 +13,7 @@
* Example: 1.102.2 -> Major version 1, Minor version 102, Patch version 2
*/
-const VERSION = "1.105.23";
+const VERSION = "1.105.24";
if (parseMapVersion(VERSION) !== VERSION) alert("versioning.js: Invalid format or parsing function");
{