1
Fork 0

Start Anonymize Usernames count from 1.

This commit is contained in:
Bauke 2023-07-27 12:49:34 +02:00
parent 5d00a130c5
commit e0f8123334
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -35,7 +35,7 @@ function generateReplacements(elements: HTMLElement[]): Record<string, string> {
const replacements: Record<string, string> = {};
for (const [index, username] of Array.from(usernames).entries()) {
replacements[username] = `Anonymous ${index}`;
replacements[username] = `Anonymous ${index + 1}`;
}
return replacements;