Skip to content

Commit

Permalink
fix: typo in getCompatiblePlugins
Browse files Browse the repository at this point in the history
  • Loading branch information
julianlam committed Sep 28, 2020
1 parent aa268d5 commit 07af621
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/controllers/admin/plugins.js
Expand Up @@ -9,7 +9,7 @@ const pluginsController = module.exports;

pluginsController.get = async function (req, res) {
const [compatible, all] = await Promise.all([
getCompatiblePluigns(),
getCompatiblePlugins(),
getAllPlugins(),
]);

Expand Down Expand Up @@ -39,7 +39,7 @@ pluginsController.get = async function (req, res) {
});
};

async function getCompatiblePluigns() {
async function getCompatiblePlugins() {
return await getPlugins(true);
}

Expand Down

0 comments on commit 07af621

Please sign in to comment.