Refactor rules text generation to simplify rule count calculation

This commit is contained in:
Seth 2025-01-14 21:40:09 -05:00
parent 39fefd04e0
commit aa89875b8a
No known key found for this signature in database
GPG key ID: 8B7A2C60CDF65CAC

View file

@ -39,9 +39,7 @@ Bun.serve({
rules = Array.from(new Set(rules));
const ruleCount = originalRuleCount - rules.length;
const rulesText = makeComment(originalRuleCount, ruleCount) + rules.join('\n');
const rulesText = makeComment(originalRuleCount, originalRuleCount - rules.length) + rules.join('\n');
return new Response(rulesText, {
headers: {