mirror of https://github.com/vector-im/riot-web
ElectronPlatform.tsx aktualisieren
Co-authored-by: Robin <robin@robin.town>pull/27301/head
parent
b64ac0593e
commit
1cf08423ad
|
@ -170,13 +170,7 @@ export default class ElectronPlatform extends VectorBasePlatform {
|
|||
window.electron.on("openDesktopCapturerSourcePicker", () => {
|
||||
const { finished } = Modal.createDialog(DesktopCapturerSourcePicker);
|
||||
finished.then(([source]) => {
|
||||
if (!source)
|
||||
source = {
|
||||
id: "",
|
||||
name: "",
|
||||
thumbnailURL: ""
|
||||
};
|
||||
this.ipc.call("callDisplayMediaCallback", source);
|
||||
this.ipc.call("callDisplayMediaCallback", source ?? { id: "", name: "", thumbnailURL: "" });
|
||||
});
|
||||
});
|
||||
|
||||
|
|
Loading…
Reference in New Issue