Skip to content

Commit

Permalink
Merge pull request #158 from esmero/ISSUE-157
Browse files Browse the repository at this point in the history
ISSUE-157: Fix D9's new thing
  • Loading branch information
DiegoPino authored May 17, 2021
2 parents 39f78a8 + 59c50db commit 12c43ec
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class NodeBearingStrawberryfieldSelection extends NodeSelection {
protected function buildEntityQuery($match = NULL, $match_operator = 'CONTAINS') {

$query = parent::buildEntityQuery($match, $match_operator);
$handler_settings = $this->configuration['handler_settings'];
$handler_settings = $this->configuration['handler_settings'] ?? [];
if (!isset($handler_settings['filter'])) {
return $query;
}
Expand All @@ -43,4 +43,4 @@ protected function buildEntityQuery($match = NULL, $match_operator = 'CONTAINS')
}
return $query;
}
}
}

0 comments on commit 12c43ec

Please sign in to comment.