From a3a0d8f49aa93a256b23791aa3cc9095198c63cc Mon Sep 17 00:00:00 2001 From: Alexandre Aubin Date: Mon, 27 Apr 2020 03:19:02 +0200 Subject: [PATCH] Fix stupid typo in upgrade controller --- 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 21420f42..51d8f474 100644 --- a/src/js/yunohost/controllers/tools.js +++ b/src/js/yunohost/controllers/tools.js @@ -58,7 +58,7 @@ // Upgrade all apps or the system - if ((what == "system") || (what == "system")) + if ((what == "system") || (what == "apps")) { var confirm_message = y18n.t('confirm_update_' + what); var api_url = '/upgrade?'+what;