Quick fix, Github seems to have changed something around permissions

This commit is contained in:
Matthieu Napoli
2015-01-07 22:16:16 +13:00
parent 9231a8c5fb
commit a9fe2682c5

View File

@@ -33,9 +33,9 @@ class StatisticsComputer implements StatisticsProvider
public function getStatistics($user, $repository)
{
$issues = $this->fetchIssues($user, $repository);
$collaborators = $this->fetchCollaborators($user, $repository);
// $collaborators = $this->fetchCollaborators($user, $repository);
$issues = $this->excludeIssuesCreatedByCollaborators($issues, $collaborators);
// $issues = $this->excludeIssuesCreatedByCollaborators($issues, $collaborators);
$issues = $this->excludeIssuesByLabels($issues, $this->excludedLabels);
$latestIssues = $this->keepLatestIssues($issues);