Skip to content
This repository was archived by the owner on Nov 10, 2021. It is now read-only.

Commit de02252

Browse files
authored
Merge pull request #33 from veqtor/fix_leniency
Leniency ruined featured feed, don't listen to users
2 parents 72efe91 + 7e1cfbf commit de02252

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

conseilUtil.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ const getFeaturedArtisticUniverse = async(max_time) => {
463463
thresholdHdao = Math.min(1_000_000, Math.max(100_000 * hdaoPerTez, 10_000))
464464

465465
return artisticUniverse.filter(function (o) {
466-
return (((hdaoMap[o.minter] || 0) / Math.max(mintsPerCreator[o.minter] || 1, 1)) > thresholdHdao) || (mintsPerCreator[o.minter] <= 1)
466+
return (((hdaoMap[o.minter] || 0) / Math.max(mintsPerCreator[o.minter] || 1, 1)) > thresholdHdao)
467467
})
468468
}
469469

0 commit comments

Comments
 (0)