diff --git a/controllers/apps.js b/controllers/apps.js index 4376d15..c2b065e 100644 --- a/controllers/apps.js +++ b/controllers/apps.js @@ -131,7 +131,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,