diff --git a/web/modules/custom/nys_openleg_imports/src/Plugin/OpenlegImportProcessor/Agendas.php b/web/modules/custom/nys_openleg_imports/src/Plugin/OpenlegImportProcessor/Agendas.php index c83c4f9b25..b1afcc1749 100644 --- a/web/modules/custom/nys_openleg_imports/src/Plugin/OpenlegImportProcessor/Agendas.php +++ b/web/modules/custom/nys_openleg_imports/src/Plugin/OpenlegImportProcessor/Agendas.php @@ -200,7 +200,7 @@ function ($v) { } foreach (($item->voteInfo->votesList->items ?? []) as $vote) { $name = BillHelper::formatTitle($vote->bill); - if (array_key_exists('$name', $bills)) { + if (array_key_exists($name, $bills)) { $bills[$name]['vote'] = $vote; } }