File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
1
FROM node:20.7.0-alpine
2
2
3
- LABEL version="1.5.2 " description="Api to control whatsapp features through http requests."
3
+ LABEL version="1.5.3 " description="Api to control whatsapp features through http requests."
4
4
LABEL maintainer="Davidson Gomes" git="https://github.com/DavidsonGomes"
5
5
LABEL contact="contato@agenciadgcode.com"
6
6
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " evolution-api" ,
3
- "version" : " 1.5.2 " ,
3
+ "version" : " 1.5.3 " ,
4
4
"description" : " Rest api for communication with WhatsApp" ,
5
5
"main" : " ./dist/src/main.js" ,
6
6
"scripts" : {
Original file line number Diff line number Diff line change @@ -111,6 +111,7 @@ export class TypebotService {
111
111
112
112
const prefilledVariables = {
113
113
remoteJid : remoteJid ,
114
+ instanceName : instance . instanceName ,
114
115
} ;
115
116
116
117
variables . forEach ( ( variable ) => {
@@ -525,7 +526,7 @@ export class TypebotService {
525
526
return ;
526
527
}
527
528
528
- if ( content . toLowerCase ( ) === keyword_finish . toLowerCase ( ) ) {
529
+ if ( keyword_finish && content . toLowerCase ( ) === keyword_finish . toLowerCase ( ) ) {
529
530
sessions . splice ( sessions . indexOf ( session ) , 1 ) ;
530
531
531
532
const typebotData = {
You can’t perform that action at this time.
0 commit comments