mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-06-15 10:44:41 -04: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
|
// Load plugin metadata ep.json
|
||||||
await Promise.all(Object.keys(packagesNew).map(async (pluginName) => {
|
await Promise.all(Object.keys(packagesNew).map(async (pluginName) => {
|
||||||
logger.info(`Loading plugin ${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`);
|
logger.info(`Loaded ${Object.keys(packagesNew).length} plugins`);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue