From 983a2784c50d306572c5b95908e9deaf5fb7290a Mon Sep 17 00:00:00 2001 From: Travis Ralston Date: Wed, 13 Dec 2017 22:57:13 -0700 Subject: [PATCH] Use the new confId parameter --- web/app/widget_wrappers/jitsi/jitsi.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/app/widget_wrappers/jitsi/jitsi.component.ts b/web/app/widget_wrappers/jitsi/jitsi.component.ts index 72188f4..9ed696b 100644 --- a/web/app/widget_wrappers/jitsi/jitsi.component.ts +++ b/web/app/widget_wrappers/jitsi/jitsi.component.ts @@ -26,7 +26,7 @@ export class JitsiWidgetWrapperComponent implements OnInit { let params: any = activatedRoute.snapshot.queryParams; this.domain = params.domain; - this.conferenceId = params.conferenceId; + this.conferenceId = params.confId || params.conferenceId; this.displayName = params.displayName; this.avatarUrl = params.avatarUrl; this.userId = params.userId;