That seems to work. Thanks to the original poster of the patch!
For those who end up here without a lot of Drupal/PHP experience, here are the steps I took:
In folder:
/modules/honeypot/src
the file:
HoneypotService.php
comment out lines 150-154:
/*
if (!empty($form['#webform_id'])) {
while (array_key_exists($honeypot_element, $form['elements'])) {
$honeypot_element .= '_';
}
}
*/
Then, after this line: (146)
$honeypot_element = $this->config->get('element_name');
Insert this:
// Check if this key already exists, if it does, change the name.
if (array_key_exists($honeypot_element, $form)) {
$honeypot_element .= '_';
}
Clear cache.
slangston → created an issue.