fix birthday which causes various issues
This commit is contained in:
Devin Zuczek
2026-08-04 01:19:42 -04:00
parent 70df3cb6cb
commit 23bc159c28
+3 -1
View File
@@ -112,7 +112,9 @@ function toSelfAccountDto(account: Account) {
return { return {
...toAccountDto(account), ...toAccountDto(account),
email: account.email ?? null, email: account.email ?? null,
birthday: null, // @todo he game client needs this to be set. I forget how birthdays were set, so for now
// everyone can be old.
birthday: '1904-01-01T00:00:00.000Z',
availableUsernameChanges: account.availableUsernameChanges ?? DEFAULT_USERNAME_CHANGES, availableUsernameChanges: account.availableUsernameChanges ?? DEFAULT_USERNAME_CHANGES,
} }
} }