From 67d223dc78d2459664c4227b85e242f76bfd3d19 Mon Sep 17 00:00:00 2001 From: s-hadinger <49731213+s-hadinger@users.noreply.github.com> Date: Thu, 22 May 2025 08:27:41 +0200 Subject: [PATCH] Fix Berry solidification regression introduced in #23451 --- lib/libesp32/berry/src/be_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libesp32/berry/src/be_module.c b/lib/libesp32/berry/src/be_module.c index 87c290e85..842377f4f 100644 --- a/lib/libesp32/berry/src/be_module.c +++ b/lib/libesp32/berry/src/be_module.c @@ -300,7 +300,7 @@ int be_module_load_nocache(bvm *vm, bstring *path, bbool nocache) /* load module to vm->top */ int be_module_load(bvm *vm, bstring *path) { - return be_module_load_nocache(vm, path, btrue); + return be_module_load_nocache(vm, path, bfalse); } BERRY_API bbool be_getmodule(bvm *vm, const char *k)