Skip to content

Commit

Permalink
Fix issue #359
Browse files Browse the repository at this point in the history
This commit fixes the internal server error issue for some authors
  • Loading branch information
Koray Koska committed Jun 22, 2018
1 parent 0efbcc8 commit 06bc2b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion views/owner.slim
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ ruby:
sum[:apps] = pod[:stat_metric][:app_total] + (sum[:apps] || 0)
sum[:downloads] = pod[:stat_metric][:download_total] + (sum[:downloads] || 0)
sum[:stars] = (pod[:github_pod_metric][:stargazers] || 0) + (sum[:stars] || 0)
sum[:loc] = pod[:cocoadocs_pod_metric][:total_lines_of_code] + (sum[:loc] || 0)
sum[:loc] = (pod[:cocoadocs_pod_metric][:total_lines_of_code] || 0) + (sum[:loc] || 0)
sum
end

Expand Down

0 comments on commit 06bc2b1

Please sign in to comment.