We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6db4b7 commit 98a3149Copy full SHA for 98a3149
lib/commonConfig.js
@@ -454,9 +454,11 @@ function processEnvironmentVariables() {
454
config.autocast = process.env.IOTA_AUTOCAST === 'true';
455
}
456
457
+
458
if (process.env.IOTA_AUTOCAST_GEOJSON) {
459
config.autocastGeoJSON = process.env.IOTA_AUTOCAST_GEOJSON.split(',').map((ctx) => ctx.trim());
460
461
+ config.autocastGeoJSON = [] || config.autocastGeoJSON;
462
463
if (process.env.IOTA_MULTI_CORE) {
464
config.multiCore = process.env.IOTA_MULTI_CORE === 'true';
0 commit comments