From ab3bfad376dfc5b4cb02a100373b8a08eed453e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Tue, 1 Jul 2025 17:34:38 +0000 Subject: [PATCH] [task-153] [fix] --- source/conf.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/source/conf.ts b/source/conf.ts index ecffd80..963a678 100644 --- a/source/conf.ts +++ b/source/conf.ts @@ -494,9 +494,12 @@ namespace _munin.conf path : string ) : Promise { - const conf_raw : {version : string; content : any} = await lib_plankton.conf.load( - schema(), - path + const conf_raw : {version : string; content : any} = await lib_plankton.conf.load_versioned( + path, + schema, + { + "v6": null, + } ); if (conf_raw.version !== current_version) {