Skip to content

Commit

Permalink
Prepend LIS IDs with the chamber ID
Browse files Browse the repository at this point in the history
  • Loading branch information
waldoj committed Jan 15, 2024
1 parent f7529bd commit 7924157
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cron/legislators.php
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
{
try
{
$legislator_in_csv = $import->legislator_in_csv($senators[$id]);
$legislator_in_csv = $import->legislator_in_csv('S' . $senators[$id]);
}
catch (Exception $e)
{
Expand Down Expand Up @@ -228,7 +228,7 @@
{
try
{
$legislator_in_csv = $import->legislator_in_csv($delegates[$id]);
$legislator_in_csv = $import->legislator_in_csv('H' . $delegates[$id]);
}
catch (Exception $e)
{
Expand Down

0 comments on commit 7924157

Please sign in to comment.