From a7fa69d61188f55410fe30500948ac557a9ad424 Mon Sep 17 00:00:00 2001 From: elias couppe Date: Thu, 21 Sep 2023 21:11:17 +0200 Subject: [PATCH] =?UTF-8?q?fix=20:=20needsGetConfig=20true=20si=20pas=20de?= =?UTF-8?q?=20cl=C3=A9=20fournie?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Interface/IMapBase.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Interface/IMapBase.js b/src/Interface/IMapBase.js index 07ccd5308..c609fbc8c 100644 --- a/src/Interface/IMapBase.js +++ b/src/Interface/IMapBase.js @@ -590,7 +590,9 @@ IMap.prototype = { if (Config) { this.apiKey = Object.keys(Config.generalOptions.apiKeys); } else { + // clé full par défaut et on charge la config this.apiKey = "full"; + needsGetConfig = true; } }