1
0
Fork 0

Add support for new GitHub API

pull/517/head
Jordi Boggiano 2012-03-29 17:52:24 +02:00
parent a264219f07
commit 7a28a2d83a
1 changed files with 11 additions and 5 deletions

View File

@ -216,7 +216,13 @@ class GitHubDriver extends VcsDriver
}
try {
$repoData = JsonFile::parseJson($this->getContents($repoDataUrl));
$this->rootIdentifier = $repoData['master_branch'] ?: 'master';
if (isset($repoData['default_branch'])) {
$this->rootIdentifier = $repoData['default_branch'];
} elseif (isset($repoData['master_branch'])) {
$this->rootIdentifier = $repoData['master_branch'];
} else {
$this->rootIdentifier = 'master';
}
} catch (TransportException $e) {
switch($e->getCode()) {
case 401: