From 6f9235bdd1a377277fc150f9bdabc2f50924a293 Mon Sep 17 00:00:00 2001 From: "James C. Davis" Date: Wed, 15 Aug 2018 03:20:12 -0400 Subject: [PATCH] Filter out in-repo addons that could not be found --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index f685b05e..e12010da 100644 --- a/index.js +++ b/index.js @@ -270,6 +270,6 @@ module.exports = { }); } - return this._inRepoAddons; + return this._inRepoAddons.filter(Boolean); } };