We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 394b2d9 commit d47b61cCopy full SHA for d47b61c
src/lse/PluginManager.cpp
@@ -204,7 +204,9 @@ ll::Expected<> PluginManager::load(ll::plugin::Manifest manifest) {
204
ExitEngineScope exit;
205
#endif
206
plugin->onLoad([](ll::plugin::Plugin& plugin) { return true; });
207
+#ifndef LEGACY_SCRIPT_ENGINE_BACKEND_NODEJS
208
plugin->onUnload([](ll::plugin::Plugin& plugin) { return true; });
209
+#endif
210
plugin->onEnable([](ll::plugin::Plugin& plugin) { return true; });
211
plugin->onDisable([](ll::plugin::Plugin& plugin) { return true; });
212
} catch (const Exception& e) {
0 commit comments