Fix hangup button handler
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