Bug
In scripts/fetch-student-info.js:63, a string username is compared against u.id which is likely numeric. The .find() always returns undefined due to type mismatch ("abc" === 123 is always false).
Impact
Student info lookup is completely broken - never finds matching students.
Fix
Use == or convert both to same type: String(u.id) === username.
@codepvg Please assign me this issue under GSSOC 2026.
Bug
In
scripts/fetch-student-info.js:63, a stringusernameis compared againstu.idwhich is likely numeric. The.find()always returnsundefineddue to type mismatch ("abc" === 123is always false).Impact
Student info lookup is completely broken - never finds matching students.
Fix
Use
==or convert both to same type:String(u.id) === username.@codepvg Please assign me this issue under GSSOC 2026.