Fix device selection never completing in widget mode

By reinstating some of the code from the full mesh branch that was there to handle this
This commit is contained in:
Robin Townsend
2023-06-23 14:17:51 -04:00
parent 551fb45d79
commit 45915ed67e
4 changed files with 81 additions and 1 deletions

View File

@@ -47,6 +47,11 @@ export enum ElementWidgetActions {
ScreenshareStop = "io.element.screenshare_stop",
}
export interface JoinCallData {
audioInput: string | null;
videoInput: string | null;
}
export interface ScreenshareStartData {
desktopCapturerSourceId: string;
}