There has been a copy paste mistake made in a couple of the forms: the "unserializer" property is being rather than "processor".
Instead of:
$form['processor'] = array(
'#type' => 'select',
'#title' => t('Processor'),
'#default_value' => $webhook->processor,
'#options' => webhook_get_processor_list(),
'#required' => TRUE,
'#description' => t('Select plugin to be used to process the data from the request.'),
);We have:
$form['processor'] = array(
'#type' => 'select',
'#title' => t('Processor'),
'#default_value' => $webhook->unserializer,
'#options' => webhook_get_processor_list(),
'#required' => TRUE,
'#description' => t('Select plugin to be used to process the data from the request.'),
);| Comment | File | Size | Author |
|---|---|---|---|
| #1 | webhook-processor-value-typo-2192429-1.patch | 1.41 KB | murrayw |
Comments
Comment #1
murrayw commentedHere is a patch.
Comment #2
murrayw commentedLOL. I made a copy paste mistake too.
Comment #3
skwashd commentedThanks for the patch. This was fixed a few months ago by a member of my team. See 695c41c.