Dear @fahadwaheed ,
I tested your patch. It solves this bug!
Only thing i noticed: I am using a drop-down field in my form so only one value can be chosen. The value however is send as a JSON list to the webhook. E.g.:
[select my-dropdown "1" "2" "3"]
Will result in the following payload at the called webhook:
"body": {
"form_id": "1651",
"fields": {
... other fields ...
"my-dropdown": [
"2"
]
}
}
If that’s the exepected behavior for dropdown values (that are always single-select?), that’s fine for me. Please add it to your regular release 🙂
Thanks. Best regards.
@dariav Thank you very much. Seems to work perfectly fine 🙂