Don't push disabled apps decree if the value didn't change

This commit is contained in:
yflory 2024-06-24 11:13:42 +02:00
parent d06ad0d5b2
commit c250e8bff2
1 changed files with 2 additions and 2 deletions

View File

@ -227,8 +227,8 @@ commands.SET_SUPPORT_MAILBOX = makeGenericSetter('supportMailbox', function (arg
commands.DISABLE_APPS = function (Env, args) {
if (!Array.isArray(args)) { throw new Error("INVALID_ARGS"); }
const appsToDisable = args;
Env.appsToDisable = appsToDisable;
if (JSON.stringify(args) === JSON.stringify(Env.appsToDisable)) { return false; }
Env.appsToDisable = args;
return true;
};