From 3233400d70fda6da9af87e16b090ae67e74ae1a9 Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 4 Feb 2019 18:55:46 +0100 Subject: [PATCH] [microdecision] Update list of 'special packages' according to tools.py --- src/js/yunohost/controllers/tools.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/yunohost/controllers/tools.js b/src/js/yunohost/controllers/tools.js index d24566db..07b65c8b 100644 --- a/src/js/yunohost/controllers/tools.js +++ b/src/js/yunohost/controllers/tools.js @@ -55,7 +55,7 @@ data.packages[i].changelog = data.packages[i].changelog.replace(/\n/g, '
'); // Check for special packages that need delayed upgrade. - if (["moulinette", "moulinette-yunohost", "yunohost-admin", "yunohost-config-nginx", "ssowat", "python"].indexOf(data.packages[i].name) != -1) { + if (["moulinette", "yunohost", "yunohost-admin", "ssowat", "python"].indexOf(data.packages[i].name) != -1) { c.flash('warning', y18n.t('system_delayed_upgrade_warning', [data.packages[i].name])); data.packages[i].delayed = true; }