Skip to content

Commit 103011b

Browse files
Fix issue with default leave behavior with previous change (#3113)
1 parent bc6013e commit 103011b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

demos/browser/app/meetingV2/meetingV2.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ export class DemoMeetingApp
425425
// `nothing` option can be used to stop cleanup from happening allowing
426426
// `audioVideo` to be reused without stopping the meeting.
427427
behaviorAfterLeave =
428-
(search.get('behaviorAfterLeave') as 'refresh' | 'reload' | 'halt' | 'nothing') ?? 'refresh';
428+
(search.get('behaviorAfterLeave') as 'reload' | 'halt' | 'nothing') ?? 'reload';
429429

430430

431431
videoMetricReport: { [id: string]: { [id: string]: {} } } = {};

0 commit comments

Comments
 (0)