Skip to content

Commit

Permalink
Do not fetch postcode from members
Browse files Browse the repository at this point in the history
  • Loading branch information
jbelien authored Sep 25, 2024
1 parent b2b6a60 commit ec7acb0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/get-members/src/get-members.php
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ function ($country) {
'first_name' => $member->merge_fields->FNAME,
'last_name' => $member->merge_fields->LNAME,
'username' => $username,
'location' => trim($member->merge_fields->POSTCODE.' '.$member->merge_fields->PLACE),
'location' => $member->merge_fields->PLACE,
'timestamp' => $member->timestamp_opt,
'stats' => $stats,
];
Expand Down

0 comments on commit ec7acb0

Please sign in to comment.