Skip to content

Commit

Permalink
fix: update vouch scoring
Browse files Browse the repository at this point in the history
  • Loading branch information
twilson63 committed May 23, 2024
1 parent a00e9bf commit 1717700
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/lib/calc-confidence-value.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export function calculate(user) {

const confidenceValue = Math.floor((tweet_count * TWEET_WEIGHT) +
(like_count * LIKE_WEIGHT) +
(listed_count * LISTED_WEIGHT) +
// (listed_count * LISTED_WEIGHT) +
(verified ? VERIFIED_WEIGHT : 0));

return confidenceValue;
Expand Down

0 comments on commit 1717700

Please sign in to comment.