Handle no selected screen when screen-sharing (#7018)
This commit is contained in:
@@ -278,6 +278,8 @@ export default class CallView extends React.Component<IProps, IState> {
|
|||||||
if (window.electron?.getDesktopCapturerSources) {
|
if (window.electron?.getDesktopCapturerSources) {
|
||||||
const { finished } = Modal.createDialog(DesktopCapturerSourcePicker);
|
const { finished } = Modal.createDialog(DesktopCapturerSourcePicker);
|
||||||
const [source] = await finished;
|
const [source] = await finished;
|
||||||
|
if (!source) return;
|
||||||
|
|
||||||
isScreensharing = await this.props.call.setScreensharingEnabled(true, source);
|
isScreensharing = await this.props.call.setScreensharingEnabled(true, source);
|
||||||
} else {
|
} else {
|
||||||
isScreensharing = await this.props.call.setScreensharingEnabled(true);
|
isScreensharing = await this.props.call.setScreensharingEnabled(true);
|
||||||
|
|||||||
Reference in New Issue
Block a user