diff --git a/react/features/base/conference/functions.js b/react/features/base/conference/functions.js index ccdccc673..e6ec7f6ba 100644 --- a/react/features/base/conference/functions.js +++ b/react/features/base/conference/functions.js @@ -192,7 +192,7 @@ export function getConferenceName(stateful: Function | Object): string { || subject || callDisplayName || (callee && callee.name) - || safeStartCase(safeDecodeURIComponent(room)); + || (room && safeStartCase(safeDecodeURIComponent(room))); } /** diff --git a/react/features/base/premeeting/components/web/PreMeetingScreen.js b/react/features/base/premeeting/components/web/PreMeetingScreen.js index b224b977f..b9328dfc9 100644 --- a/react/features/base/premeeting/components/web/PreMeetingScreen.js +++ b/react/features/base/premeeting/components/web/PreMeetingScreen.js @@ -161,9 +161,11 @@ class PreMeetingScreen extends PureComponent {

{ title }

- - {_roomName} - + { _roomName && ( + + {_roomName} + + )} { children } { _buttons.length && } { skipPrejoinButton }