From 23bc159c28ce49a9238902cd06a386bc2b60f465 Mon Sep 17 00:00:00 2001 From: Devin Zuczek Date: Tue, 4 Aug 2026 01:19:42 -0400 Subject: [PATCH] apps fix birthday which causes various issues --- apps/accounts/src/accounts.app.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/accounts/src/accounts.app.ts b/apps/accounts/src/accounts.app.ts index 3cb9a41..2f55c71 100644 --- a/apps/accounts/src/accounts.app.ts +++ b/apps/accounts/src/accounts.app.ts @@ -112,7 +112,9 @@ function toSelfAccountDto(account: Account) { return { ...toAccountDto(account), 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, } }