diff --git a/controllers/apps.js b/controllers/apps.js index 02cfaec..2d7e99e 100644 --- a/controllers/apps.js +++ b/controllers/apps.js @@ -120,7 +120,7 @@ exports.getApps = asyncWrapper(async (req, res, next) => { if (apps.some((app) => app.name === item.name)) { const app = apps.filter((e) => e.name === item.name)[0]; - if (item.icon === 'custom') { + if (item.icon === 'custom' || (item.icon === 'docker' && app.icon != 'docker')) { await app.update({ name: item.name, url: item.url,