chore: Fix Dialogflow issue (#3210)

This commit is contained in:
Sojan Jose
2021-10-14 13:17:09 +05:30
committed by GitHub
parent 99abbb8158
commit e669f6766f
2 changed files with 13 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ class Integrations::Dialogflow::ProcessorService
# TODO: might needs to change this to a way that we fetch the updated value from event data instead
# cause the message.updated event could be that that the message was deleted
return message.content_attributes['submitted_values']&.dig 'value' if event_name == 'message.updated'
return message.content_attributes['submitted_values']&.first&.dig('value') if event_name == 'message.updated'
message.content
end