From cb1f7323f43c777eedc3e4d9e628e3eee16fef5b Mon Sep 17 00:00:00 2001 From: RinZ27 <222222878+RinZ27@users.noreply.github.com> Date: Sun, 5 Apr 2026 18:59:56 +0700 Subject: [PATCH] Prevent email disclosure in contributor list generation --- scripts/generate-contributor-list.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/generate-contributor-list.mjs b/scripts/generate-contributor-list.mjs index 41c68a313..fbac01d10 100644 --- a/scripts/generate-contributor-list.mjs +++ b/scripts/generate-contributor-list.mjs @@ -319,7 +319,7 @@ async function main() { const key = normalizeName(nm) + "|" + email.toLowerCase(); if (seenUnk.has(key)) continue; seenUnk.add(key); - unmatched.push({ name: nm, gh: email, login: "" }); + unmatched.push({ name: nm, gh: "", login: "" }); } // 7) Merge, sort, output