We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ad8f0f commit 3143375Copy full SHA for 3143375
lib/scoring.js
@@ -25,7 +25,7 @@
25
if (econ.toLowerCase() !== 'none') score -= 15;
26
// Age
27
if (ageDays !== null) {
28
- if (ageDays < 7) score -= 30; else if (ageDays < 90) score -= 10; else score += 5;
+ if (ageDays < 2) score -= 80; else if (ageDays < 3) score -= 60; else if (ageDays < 7) score -= 40; else if (ageDays < 90) score -= 20; else score += 5;
29
}
30
// Privacy
31
if (isPrivate) score -= 10;
0 commit comments