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

Commit 4e6a1e9

Browse files
committed
Let people's first mint through
1 parent f4dbf1c commit 4e6a1e9

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
@@ -460,7 +460,7 @@ const getFeaturedArtisticUniverse = async(max_time) => {
460460
thresholdHdao = Math.min(1_000_000, Math.max(100_000 * hdaoPerTez, 10_000))
461461

462462
return artisticUniverse.filter(function (o) {
463-
return ((hdaoMap[o.minter] || 0) / Math.max(mintsPerCreator[o.minter] || 1, 1)) > thresholdHdao
463+
return (((hdaoMap[o.minter] || 0) / Math.max(mintsPerCreator[o.minter] || 1, 1)) > thresholdHdao) || (mintsPerCreator[o.minter] <= 1)
464464
})
465465
}
466466

0 commit comments

Comments
 (0)