diff --git a/CHANGELOG.md b/CHANGELOG.md index 83216127..67f31f51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Dynamic/Types/MailchimpType.php b/Dynamic/Types/MailchimpType.php index d9b6a117..f2e08af8 100644 --- a/Dynamic/Types/MailchimpType.php +++ b/Dynamic/Types/MailchimpType.php @@ -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;