From 00e9abdf7fcac199a6f17ac7d94c5f3b0856d198 Mon Sep 17 00:00:00 2001 From: gregor <gregor.schulz@holi.social> Date: Fri, 6 Dec 2024 09:27:25 +0100 Subject: [PATCH] fix typo --- src/handlers/user-name-updated-handler.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/handlers/user-name-updated-handler.ts b/src/handlers/user-name-updated-handler.ts index 78acaca..6d369ad 100644 --- a/src/handlers/user-name-updated-handler.ts +++ b/src/handlers/user-name-updated-handler.ts @@ -12,7 +12,7 @@ export const userNameUpdatedHandler = async ( { user }: UserNameUpdatedDataPayload ): Promise<void> => { try { - await logPhase(messageId, 'userNameUpdateHandler.updateName for identity ' + user.identity + ' to ' + user.name + 'and avatar to ' + user.avatar, async () => { + await logPhase(messageId, 'userNameUpdateHandler.updateName for identity ' + user.identity + ' to ' + user.name + ' and avatar to ' + user.avatar, async () => { if (user.identity) { if (!(await isUsernameAvailable(user.identity))) { logWarn(messageId, `Could not update user profile for ${user.identity}, because the user was not found.`) -- GitLab