mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
Fixed startup and loading of plugins.
This commit is contained in:
parent
6fe4473e25
commit
a5ce90c135
1 changed files with 1 additions and 1 deletions
|
@ -90,7 +90,7 @@ export const update = async () => {
|
|||
// Load plugin metadata ep.json
|
||||
await Promise.all(Object.keys(packagesNew).map(async (pluginName) => {
|
||||
logger.info(`Loading plugin ${pluginName}...`);
|
||||
await loadPlugin(packagesNew, pluginName, pluginsNew, parts);
|
||||
await loadPlugin(packagesNew, pluginName, pluginsNew, partsNew);
|
||||
}));
|
||||
logger.info(`Loaded ${Object.keys(packagesNew).length} plugins`);
|
||||
|
||||
|
|
Loading…
Reference in a new issue