Switch logic to includes

This commit is contained in:
Ian Philips 2022-10-11 08:35:59 -06:00
parent 4fd0e5caad
commit e970a908c6
2 changed files with 2 additions and 2 deletions

View File

@ -326,7 +326,7 @@ async function handleBettingStreakBadgeAward(
// TODO: check if already awarded 50th streak as well
if (newBettingStreak === 1 && alreadyHasBadgeForFirstStreak) return
if (newBettingStreak in streakerBadgeRarityThresholds) {
if (streakerBadgeRarityThresholds.includes(newBettingStreak)) {
const badge = {
type: 'STREAKER',
name: 'Streaker',

View File

@ -50,7 +50,7 @@ async function handleMarketCreatorBadgeAward(contractCreator: User) {
.where('creatorId', '==', contractCreator.id)
.where('resolution', '!=', 'CANCEL')
)
if (contracts.length in marketCreatorBadgeRarityThresholds) {
if (marketCreatorBadgeRarityThresholds.includes(contracts.length)) {
const badge = {
type: 'MARKET_CREATOR',
name: 'Market Creator',