diff options
Diffstat (limited to 'remote/marionette/addon.sys.mjs')
-rw-r--r-- | remote/marionette/addon.sys.mjs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/remote/marionette/addon.sys.mjs b/remote/marionette/addon.sys.mjs index f83671694b..5d7169444c 100644 --- a/remote/marionette/addon.sys.mjs +++ b/remote/marionette/addon.sys.mjs @@ -37,7 +37,7 @@ async function installAddon(file) { throw new lazy.error.UnknownError(ERRORS[install.error]); } - return install.install().catch(err => { + return install.install().catch(() => { throw new lazy.error.UnknownError(ERRORS[install.error]); }); } |