summaryrefslogtreecommitdiff
path: root/lib/api/groups.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/api/groups.rb')
-rw-r--r--lib/api/groups.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/api/groups.rb b/lib/api/groups.rb
index 05443329a32..83c7898150a 100644
--- a/lib/api/groups.rb
+++ b/lib/api/groups.rb
@@ -64,8 +64,8 @@ module API
forked_from_project: [:route, :forks, namespace: :route, tags: :taggings])
projects = reorder_projects(projects)
projects = paginate(projects)
- projects_with_fork = projects + projects.map(&:forked_from_project).compact
- ::Projects::BatchForksCountService.new(projects_with_fork).refresh_cache
+ projects_with_forks = projects + projects.map(&:forked_from_project).compact
+ ::Projects::BatchForksCountService.new(projects_with_forks).refresh_cache
::Projects::BatchOpenIssuesCountService.new(projects).refresh_cache
projects
end