Currently the feature for extra response groups is not working since it is silently ignored

Comments

hideaway created an issue. See original summary.

hideaway’s picture

The following patch is respecting extra response groups

marcelovani’s picture

Status: Active » Needs work

The patch doesn't apply cleanly against 2.x branch.

Also, should we do something about this https://cgit.drupalcode.org/amazon/tree/modules/amazon_field/src/Plugin/...

    $responseGroups = ['Small', 'Images'];
    if (!empty($this->getSettings()['advanced']['extraResponseGroups'])) {
      $responseGroups = array_merge($responseGroups, explode("\n", $this->getSettings()['advanced']['extraResponseGroups']));
    }