From 8d45ea2742b0f055b13012c017d50ea6063236e0 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Wed, 3 Mar 2021 12:01:17 +1100 Subject: [PATCH] do not unlock signin by linking if the displayName got is empty --- ts/receiver/configMessage.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ts/receiver/configMessage.ts b/ts/receiver/configMessage.ts index 5ff087c5f..a05570ffa 100644 --- a/ts/receiver/configMessage.ts +++ b/ts/receiver/configMessage.ts @@ -48,7 +48,9 @@ async function handleOurProfileUpdate( if (displayName) { trigger(configurationMessageReceived, displayName); } else { - window.log.warn('Got a configuration message but the display name is empty'); + window.log.warn( + 'Got a configuration message but the display name is empty' + ); } } }