diff --git a/CHANGELOG.md b/CHANGELOG.md index e498cfb2..f3489379 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Change Log All notable changes to this project will be documented in this file. +## v5.3.10 - 2017-05-23 +### Fixed: + - Cookies error on empty filename + ## v5.3.9 - 2017-05-07 ### Fixed: - Boards *forMe()* and Pinners *followers*() methods diff --git a/src/Api/CurlHttpClient.php b/src/Api/CurlHttpClient.php index 09a32e39..0714b73a 100644 --- a/src/Api/CurlHttpClient.php +++ b/src/Api/CurlHttpClient.php @@ -284,7 +284,9 @@ public function getCookiesPath() */ protected function fillCookies() { - $this->cookies->fill($this->cookieJar); + if(empty($this->cookieJar)) { + $this->cookies->fill($this->cookieJar); + } return $this; }