Skip to content

Commit

Permalink
Log 8x8 url (#1408)
Browse files Browse the repository at this point in the history
  • Loading branch information
DJAndries authored Apr 16, 2024
1 parent 961b51a commit 4415f84
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/jitsi/event-handlers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export const videoConferenceJoinedHandler = (
transcriptManager: TranscriptManager,
) => ({
name: "videoConferenceJoined",
fn: () => (params: any) => {
fn: (jitsi: IJitsiMeetApi) => (params: any) => {
reportAction("videoConferenceJoined", params);

myUserID = params.id;
Expand All @@ -369,6 +369,9 @@ export const videoConferenceJoinedHandler = (
setTimeout(async () => {
await transcriptManager.initTranscript(false);
}, 7500);

const iframe: HTMLIFrameElement = jitsi.getIFrame();
console.log(`!!! 8x8 url: ${iframe.src.split("?")[0]}`);
},
});

Expand Down

0 comments on commit 4415f84

Please sign in to comment.