diff --git a/CHANGELOG.md b/CHANGELOG.md index cf5498ca..8ea22ae2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.4.6 (homolog) + +* Fixed bug of creating new inbox by chatwoot + # 1.4.5 (2023-07-26 09:32) ### Fixed diff --git a/src/whatsapp/services/chatwoot.service.ts b/src/whatsapp/services/chatwoot.service.ts index 5e846019..f4d8477c 100644 --- a/src/whatsapp/services/chatwoot.service.ts +++ b/src/whatsapp/services/chatwoot.service.ts @@ -998,6 +998,8 @@ export class ChatwootService { chatwoot_token: this.provider.token, chatwoot_url: this.provider.url, chatwoot_sign_msg: this.provider.sign_msg, + chatwoot_reopen_conversation: this.provider.reopen_conversation, + chatwoot_conversation_pending: this.provider.conversation_pending, }; if (command.split(':')[2]) { @@ -1530,7 +1532,7 @@ export class ChatwootService { } // eslint-disable-next-line - const config = { + const config = { method: 'post', maxBodyLength: Infinity, url: `${urlServer}/instance/create`,