From c69b79872b84d1ecae4ebc9d463bc02b26aa37ca Mon Sep 17 00:00:00 2001 From: Anton Georgiev Date: Mon, 11 Mar 2024 09:50:23 -0400 Subject: [PATCH] fix(client): undefined currentUserAway --- bigbluebutton-html5/imports/ui/components/app/container.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bigbluebutton-html5/imports/ui/components/app/container.jsx b/bigbluebutton-html5/imports/ui/components/app/container.jsx index e5045456af..52006d389b 100755 --- a/bigbluebutton-html5/imports/ui/components/app/container.jsx +++ b/bigbluebutton-html5/imports/ui/components/app/container.jsx @@ -298,8 +298,8 @@ export default withTracker(() => { isPhone: deviceInfo.isPhone, isRTL: document.documentElement.getAttribute('dir') === 'rtl', currentUserEmoji: currentUserEmoji(currentUser), - currentUserAway: currentUser.away, - currentUserRaiseHand: currentUser.raiseHand, + currentUserAway: currentUser?.away, + currentUserRaiseHand: currentUser?.raiseHand, randomlySelectedUser, currentUserId: currentUser?.userId, isPresenter,