Skip to content

Commit

Permalink
馃悰 Fix retry message variable parsing
Browse files Browse the repository at this point in the history
Closes #1369
  • Loading branch information
baptisteArno committed Mar 18, 2024
1 parent e035a54 commit 782c08b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/bot-engine/continueBotFlow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,9 @@ const parseRetryMessage =
block.options &&
'retryMessageContent' in block.options &&
block.options.retryMessageContent
? block.options.retryMessageContent
? parseVariables(state.typebotsQueue[0].typebot.variables)(
block.options.retryMessageContent
)
: parseDefaultRetryMessage(block)
return {
messages: [
Expand Down

0 comments on commit 782c08b

Please sign in to comment.