mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
Fix hangup button handler
This commit is contained in:
parent
15a8ee6663
commit
c56368cdbb
@ -116,8 +116,9 @@ let meetApi: any; // JitsiMeetExternalAPI
|
||||
|
||||
// TODO: register widgetApi listeners for PTT controls (https://github.com/vector-im/riot-web/issues/12795)
|
||||
|
||||
widgetApi.on('hangup', () => {
|
||||
widgetApi.addEventListener('hangup', (ev: CustomEvent<IWidgetApiRequest>) => {
|
||||
if (meetApi) meetApi.executeCommand('hangup');
|
||||
widgetApi.transport.reply(ev.detail, {}); // ack
|
||||
});
|
||||
} else {
|
||||
enableJoinButton();
|
||||
|
Loading…
Reference in New Issue
Block a user