Refactored Score.

This commit is contained in:
DebaucheryLibrarian
2026-01-15 04:53:31 +01:00
parent 003aff49f9
commit 37275f8930
10 changed files with 1200 additions and 188 deletions

View File

@@ -189,7 +189,7 @@ function scrapeProfile({ query }) {
const birthday = new Date(Date.UTC(0, Number(month) - 1, Number(day)));
if (profile.age) {
birthday.setUTCFullYear(new Date().getFullYear() - profile.age); // indicate birth year is unknown
birthday.setUTCFullYear(new Date().getFullYear() - profile.age);
} else {
birthday.setUTCFullYear(0); // indicate birth year is unknown
}