Skip to content

Commit

Permalink
Increase mailchimp limit from 10 to 100 (#186)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexander-schranz authored and wachterjohannes committed Mar 14, 2019
1 parent 8153079 commit 4226e71
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## 1.0.0-RC6

- ENHANCEMENT #186 Increase mailchimp list limit from 10 to 100
- BUGFIX #185 Fix hidding of untranslated forms and form fields
- BUGFIX #184 Add fixes for Grammar of static form documentation
- FEATURE #183 Add tests running on php 7.3
- BUGFIX #182 Fix compatibility with doctrine/orm ^2.6
Expand Down
2 changes: 1 addition & 1 deletion Dynamic/Types/MailchimpType.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private function getMailChimpLists()
}

$mailChimp = new \DrewM\MailChimp\MailChimp($this->apiKey);
$response = $mailChimp->get('lists');
$response = $mailChimp->get('lists', ['count' => 100]);

if (!isset($response['lists'])) {
return $lists;
Expand Down

0 comments on commit 4226e71

Please sign in to comment.