Fix Berry solidification regression introduced in #23451

This commit is contained in:
s-hadinger 2025-05-22 08:27:41 +02:00 committed by GitHub
parent c10686e366
commit 67d223dc78
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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)