From e652117571938b7f609ab3a1a748d93733aee58b Mon Sep 17 00:00:00 2001 From: Damien Fetis Date: Tue, 19 Mar 2019 16:55:14 +0100 Subject: [PATCH] Remove the boolean conversion of authLogin string to display the string value instead of 'true'. (#3995) --- react/features/settings/functions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react/features/settings/functions.js b/react/features/settings/functions.js index 6d0a68856..6f0ab33ed 100644 --- a/react/features/settings/functions.js +++ b/react/features/settings/functions.js @@ -122,7 +122,7 @@ export function getProfileTabProps(stateful: Object | Function) { return { authEnabled: Boolean(conference && authEnabled), - authLogin: Boolean(conference && authLogin), + authLogin: authLogin, displayName: localParticipant.name, email: localParticipant.email };