fix: typo in getCompatiblePlugins

v1.18.x
Julian Lam 5 years ago
parent aa268d5eeb
commit 07af621381

@ -9,7 +9,7 @@ const pluginsController = module.exports;
pluginsController.get = async function (req, res) { pluginsController.get = async function (req, res) {
const [compatible, all] = await Promise.all([ const [compatible, all] = await Promise.all([
getCompatiblePluigns(), getCompatiblePlugins(),
getAllPlugins(), getAllPlugins(),
]); ]);
@ -39,7 +39,7 @@ pluginsController.get = async function (req, res) {
}); });
}; };
async function getCompatiblePluigns() { async function getCompatiblePlugins() {
return await getPlugins(true); return await getPlugins(true);
} }

Loading…
Cancel
Save