We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4d00351 commit 45c11a5Copy full SHA for 45c11a5
2 files changed
CHANGELOG.md
@@ -17,6 +17,7 @@
17
* Now it only updates the contact name if it is the same as the phone number in chatwoot
18
* Now accepts all chatwoot inbox templates
19
* Command to create new instances set to /new_instance:<NAME>:<NUMBER>
20
+* Fix in chatwoot set, sign msg can now be disabled
21
22
### Integrations
23
src/whatsapp/controllers/chatwoot.controller.ts
@@ -33,7 +33,7 @@ export class ChatwootController {
33
throw new BadRequestException('token is required');
34
}
35
36
- if (!data.sign_msg) {
+ if (data.sign_msg !== true && data.sign_msg !== false) {
37
throw new BadRequestException('sign_msg is required');
38
39
0 commit comments