Skip to content

Commit

Permalink
To enable only combined data upload it can be set to true and TruE now
Browse files Browse the repository at this point in the history
  • Loading branch information
pieterbrandsen committed May 26, 2024
1 parent bdf2e38 commit 22df02b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/data/combineResults.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ export default function handleCombinedRoomStats(shardsData) {
}
}

if (process.env.ONLY_COMBINED_DATA_UPLOAD === "true")
if (process.env.ONLY_COMBINED_DATA_UPLOAD.toLowerCase() === "true")
delete userStats.shards;

return { stats: userStats }
Expand Down

0 comments on commit 22df02b

Please sign in to comment.