diff --git a/lib/Formats/GitHub.php b/lib/Formats/GitHub.php index 7f4ec41..3f5e0af 100644 --- a/lib/Formats/GitHub.php +++ b/lib/Formats/GitHub.php @@ -2,7 +2,7 @@ namespace XRay\Formats; use DateTime, DateTimeZone; -use Parse; +use Parse, Config; use cebe\markdown\GithubMarkdown; class GitHub { @@ -43,9 +43,9 @@ class GitHub { return [null, null]; } - $response = $http->get($apiurl); + $response = $http->get($apiurl, ['User-Agent: XRay ('.Config::$base.')']); if($response['code'] != 200) { - return [null, null]; + return [null, $response['body']]; } $data = json_decode($response['body'], true); @@ -106,9 +106,6 @@ class GitHub { $entry['published'] = $data['created_at']; - #$entry['author'] - - $response = [ 'data' => $entry ];