theprogrammablemind_4wp 9.3.0-beta.36 → 9.3.0-beta.37
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/client.js +2 -2
- package/package.json +1 -1
package/client.js
CHANGED
@@ -1942,8 +1942,8 @@ const knowledgeModuleImpl = async ({
|
|
1942
1942
|
|
1943
1943
|
// no cache 21 minutes + rebuild fails "node tester_rebuild -m colors"
|
1944
1944
|
// cache okay
|
1945
|
-
const createConfigExport = async () => {
|
1946
|
-
if (createConfig.cached) {
|
1945
|
+
const createConfigExport = async (useCache = true) => {
|
1946
|
+
if (useCache && createConfig.cached) {
|
1947
1947
|
return createConfig.cached
|
1948
1948
|
}
|
1949
1949
|
const config = await createConfig()
|