Skip to content
This repository has been archived by the owner on Nov 7, 2020. It is now read-only.

Commit

Permalink
Merge pull request #19 from shailesh-daund/master
Browse files Browse the repository at this point in the history
Typecast long id to int will cause issue.
  • Loading branch information
hansott authored Sep 13, 2017
2 parents 702f46a + b8a93d7 commit 2701088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Pinterest/Api.php
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public function createPin($boardId, $note, Image $image, $link = null)
}

$params = array(
'board' => (int) $boardId,
'board' => $boardId,
'note' => (string) $note,
);

Expand Down

0 comments on commit 2701088

Please sign in to comment.