Fix hangup button handler

pull/15102/head
Travis Ralston 2020-09-29 13:20:16 -06:00
parent 15a8ee6663
commit c56368cdbb
1 changed files with 2 additions and 1 deletions

View File

@ -116,8 +116,9 @@ let meetApi: any; // JitsiMeetExternalAPI
// TODO: register widgetApi listeners for PTT controls (https://github.com/vector-im/riot-web/issues/12795) // 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'); if (meetApi) meetApi.executeCommand('hangup');
widgetApi.transport.reply(ev.detail, {}); // ack
}); });
} else { } else {
enableJoinButton(); enableJoinButton();