Skip to content

Commit

Permalink
Merge pull request #2 from ebizmarts/Issue1
Browse files Browse the repository at this point in the history
Issue1
  • Loading branch information
gonzaloebiz authored Feb 28, 2018
2 parents 95d6d83 + a581180 commit 5700520
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "ebizmarts/mailchimp-lib",
"type": "library",
"version": "3.0.16",
"version": "3.0.17",
"description": "API client library for the MailChimp",
"keywords": ["email", "api","mailchimp"],
"homepage": "https://github.com/ebizmarts/mailchimp-lib",
Expand Down
2 changes: 1 addition & 1 deletion src/Mailchimp/ListsMembers.php
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ public function get($listId,$subscriberHash,$fields=null,$excludeFields=null)
$_params = array();
if($fields) $_params['fields'] = $fields;
if($excludeFields) $_params['exclude_fields'] = $excludeFields;
return $this->master->call('list/'.$listId.'/members/'.$subscriberHash,$_params,Mailchimp::GET);
return $this->master->call('lists/'.$listId.'/members/'.$subscriberHash,$_params,Mailchimp::GET);
}

/**
Expand Down

0 comments on commit 5700520

Please sign in to comment.