Restore gists number on statusScore - Fix #57

This commit is contained in:
NumEricR
2013-03-10 01:04:42 +01:00
parent fbeb759874
commit bedb9b679b

View File

@@ -153,8 +153,8 @@ var run = function() {
var FIFTH_STEP = 150;
var EXTRA_POINT_GAIN = 1;
var statusScore = view.repos * COEF_REPOS
+ data.public_repos * COEF_GISTS
var statusScore = data.public_repos * COEF_REPOS
+ data.public_gists * COEF_GISTS
+ data.followers * COEF_FOLLOWERS
+ data.following * COEF_FOLLOWING;