From 44f0d832cde01fa01cfa8c4d2ec745380f0f3fbf Mon Sep 17 00:00:00 2001 From: Zhuk Sergey Date: Tue, 23 May 2017 19:16:47 +0300 Subject: [PATCH 1/2] fix: Cookies error on empty filename --- src/Api/CurlHttpClient.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; } From 00b2029f9123379b7c170985725953110a97f83e Mon Sep 17 00:00:00 2001 From: Zhuk Sergey Date: Tue, 23 May 2017 19:17:58 +0300 Subject: [PATCH 2/2] fixes #282 --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) 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