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.'),
  );

Comments

murrayw’s picture

Here is a patch.

murrayw’s picture

Issue summary: View changes

LOL. I made a copy paste mistake too.

skwashd’s picture

Status: Active » Fixed

Thanks for the patch. This was fixed a few months ago by a member of my team. See 695c41c.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.