Free chapters

This commit is contained in:
Ajay
2023-03-18 19:15:50 -04:00
parent d4c4dbffcc
commit b6e9f92da8
2 changed files with 2 additions and 9 deletions

View File

@@ -16,7 +16,7 @@ async function lowDownvotes(userID: HashedUserID): Promise<boolean> {
const result = await db.prepare("get", `SELECT count(*) as "submissionCount", SUM(CASE WHEN "votes" < 0 AND "views" > 5 THEN 1 ELSE 0 END) AS "downvotedSubmissions" FROM "sponsorTimes" WHERE "userID" = ?`
, [userID], { useReplica: true });
return result.submissionCount > 100 && result.downvotedSubmissions / result.submissionCount < 0.15;
return result.submissionCount > 10 && result.downvotedSubmissions / result.submissionCount < 0.15;
}
export async function canSubmit(userID: HashedUserID, category: Category): Promise<CanSubmitResult> {