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, } }