From 3d7a5676d8a0c20eb21589619fa5680f34cb16e5 Mon Sep 17 00:00:00 2001 From: Girish Ramakrishnan Date: Thu, 5 Feb 2026 23:22:26 +0100 Subject: [PATCH] lint --- src/community.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/community.js b/src/community.js index 271491394..fab1deab0 100644 --- a/src/community.js +++ b/src/community.js @@ -86,7 +86,7 @@ async function getAppUpdate(app, options) { const sortedVersions = Object.keys(versions).sort(manifestFormat.packageVersionCompare); const idx = sortedVersions.findIndex(v => v === app.manifest.version); - if (idx === -1) throw new BoxError(BoxError.EXTERNAL_ERROR, 'No such version') + if (idx === -1) throw new BoxError(BoxError.EXTERNAL_ERROR, 'No such version'); if (idx === sortedVersions.length-1) return null; // no update const nextVersion = versions[sortedVersions[idx+1]];