From a9fe2682c5cbfb529e81300a2c81316162cdc8b4 Mon Sep 17 00:00:00 2001 From: Matthieu Napoli Date: Wed, 7 Jan 2015 22:16:16 +1300 Subject: [PATCH] Quick fix, Github seems to have changed something around permissions --- src/Maintained/Statistics/StatisticsComputer.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Maintained/Statistics/StatisticsComputer.php b/src/Maintained/Statistics/StatisticsComputer.php index 77ce9a8..0db0236 100644 --- a/src/Maintained/Statistics/StatisticsComputer.php +++ b/src/Maintained/Statistics/StatisticsComputer.php @@ -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);