Skip to content

Commit

Permalink
Fix karma threshold
Browse files Browse the repository at this point in the history
  • Loading branch information
TimDaub committed Feb 10, 2025
1 parent 95529d5 commit d9763b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/views/feed.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -310,7 +310,7 @@ const ContestBanner = (stories) => html`

// NOTE: Only set this date in synchronicity with the src/launch.mjs date!!
const cutoffDate = new Date("2025-01-15");
const thresholdKarma = 3;
const thresholdKarma = 5;
export function identityClassifier(upvoter) {
let balance = 0;

Expand Down Expand Up @@ -410,7 +410,7 @@ export async function getContestStories() {
return null;
}
});

const submissionsResult = await Promise.allSettled(submissionPromises);
const submissions = submissionsResult
.filter((result) => result.status === "fulfilled" && result.value !== null)
Expand Down

0 comments on commit d9763b5

Please sign in to comment.