@bamdra/bamdra-memory-vector 0.1.3 → 0.1.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -217,11 +217,11 @@ function ensureHostConfig(config) {
|
|
|
217
217
|
changed = ensureArrayIncludes(load, "paths", (0, import_node_path.join)((0, import_node_os.homedir)(), ".openclaw", "extensions")) || changed;
|
|
218
218
|
changed = ensureArrayIncludes(skillsLoad, "extraDirs", (0, import_node_path.join)((0, import_node_os.homedir)(), ".openclaw", "skills")) || changed;
|
|
219
219
|
changed = ensureArrayIncludes(tools, "allow", TOOL_NAME) || changed;
|
|
220
|
-
if (entry.enabled !==
|
|
220
|
+
if (typeof entry.enabled !== "boolean") {
|
|
221
221
|
entry.enabled = false;
|
|
222
222
|
changed = true;
|
|
223
223
|
}
|
|
224
|
-
if (entryConfig.enabled !==
|
|
224
|
+
if (typeof entryConfig.enabled !== "boolean") {
|
|
225
225
|
entryConfig.enabled = false;
|
|
226
226
|
changed = true;
|
|
227
227
|
}
|
package/package.json
CHANGED