From 4427c0f9f38f16de539504422afd2c1486e505c8 Mon Sep 17 00:00:00 2001 From: Ubuntu Date: Fri, 16 Jul 2021 14:35:17 +0000 Subject: [PATCH] default value to false for customer timeout --- config/Settings.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/Settings.ts b/config/Settings.ts index 5399fa9..3db6c59 100644 --- a/config/Settings.ts +++ b/config/Settings.ts @@ -195,7 +195,7 @@ export const settings: Array = [ id: AppSetting.DialogflowEnableCustomerTimeout, public: true, type: SettingType.BOOLEAN, - packageValue: true, + packageValue: false, i18nLabel: 'dialogflow_enable_customer_timeout', i18nDescription: 'dialogflow_enable_customer_timeout_description', required: true,