From f341f58a736d45cff0f23a2ecce04c9334afd69d Mon Sep 17 00:00:00 2001 From: Jesse Wierzbinski Date: Tue, 18 Jun 2024 18:39:34 -1000 Subject: [PATCH] fix(api): :bug: Properly edit username when asked via API --- server/api/api/v1/accounts/update_credentials/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/api/api/v1/accounts/update_credentials/index.ts b/server/api/api/v1/accounts/update_credentials/index.ts index 2b664489..a79d7081 100644 --- a/server/api/api/v1/accounts/update_credentials/index.ts +++ b/server/api/api/v1/accounts/update_credentials/index.ts @@ -321,6 +321,7 @@ export default (app: Hono) => await user.update({ displayName: self.displayName, + username: self.username, note: self.note, avatar: self.avatar, header: self.header,