From a3d26de5b7af399d7adf94c49a9fd31006ece557 Mon Sep 17 00:00:00 2001 From: Mr D - RC Date: Sat, 16 Nov 2024 17:27:31 +0000 Subject: [PATCH] Update name change from `profile` to `control_profile` --- tabs/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tabs/cli.js b/tabs/cli.js index 3e86f00e..ae64a39d 100644 --- a/tabs/cli.js +++ b/tabs/cli.js @@ -122,7 +122,7 @@ TABS.cli.initialize = function (callback) { new Promise((resolve) => { timeout.add('CLI_send_slowly', () => { let processingDelay = TABS.cli.lineDelayMs; - if (line.toLowerCase().startsWith('profile')) { + if (line.toLowerCase().startsWith('control_profile')) { processingDelay = TABS.cli.profileSwitchDelayMs; } const isLastCommand = outputArray.length === index + 1;