Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/Github/Api/Issue/Comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ class Comments extends AbstractApi
*/
public function configure($bodyType = null)
{
if (!in_array($bodyType, array('raw', 'text', 'html'))) {
$bodyType = 'full';
if (!in_array($bodyType, array('text', 'html', 'full'))) {
$bodyType = 'raw';
}

$this->acceptHeaderValue = sprintf('application/vnd.github.%s.%s+json', $this->client->getApiVersion(), $bodyType);
Expand Down
4 changes: 2 additions & 2 deletions lib/Github/Api/Repository/Comments.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ class Comments extends AbstractApi
*/
public function configure($bodyType = null)
{
if (!in_array($bodyType, array('raw', 'text', 'html'))) {
$bodyType = 'full';
if (!in_array($bodyType, array('text', 'html', 'full'))) {
$bodyType = 'raw';
}

$this->acceptHeaderValue = sprintf('application/vnd.github.%s.%s+json', $this->client->getApiVersion(), $bodyType);
Expand Down