Skip to content

Commit

Permalink
Don't limit parameters to 250 chars (fixes #6)
Browse files Browse the repository at this point in the history
  • Loading branch information
egoexpress authored Mar 14, 2018
1 parent 883803c commit 6c953bf
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion external/pinboard.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@ public function createBookmark($url, $description, array $optionalData) {
} else {
$requestArray[$key]= $option;
}
$requestArray[$key]= substr($requestArray[$key], 0, 250);
}
}
return $this->httpRequest($this->apiUrl . 'posts/add' . '?auth_token=' . $this->apiKey, $requestArray);
Expand Down

0 comments on commit 6c953bf

Please sign in to comment.