From 6ce3dd39cd77d8b52b47621c888c047a37c4946f Mon Sep 17 00:00:00 2001 From: Daniel Molkentin Date: Tue, 11 Oct 2022 15:48:11 +0200 Subject: [PATCH] fix: show learning dashboard after session was ended in cluster proxy scenario Closes: #15821 --- .../imports/ui/components/learning-dashboard/service.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bigbluebutton-html5/imports/ui/components/learning-dashboard/service.js b/bigbluebutton-html5/imports/ui/components/learning-dashboard/service.js index 8839ddf224..d7011f0c60 100644 --- a/bigbluebutton-html5/imports/ui/components/learning-dashboard/service.js +++ b/bigbluebutton-html5/imports/ui/components/learning-dashboard/service.js @@ -42,7 +42,7 @@ const setLearningDashboardCookie = () => { const openLearningDashboardUrl = (lang) => { const APP = Meteor.settings.public.app; if (getLearningDashboardAccessToken() && setLearningDashboardCookie()) { - window.open(`${APP.learningDashboardBase}/?meeting=${Auth.meetingID}&lang=${lang}`, '_blank'); + window.open(`${APP.learningDashboardBase}/?meeting=${Auth.meetingID}&lang=${lang}&report=${getLearningDashboardAccessToken()}`, '_blank'); } else { window.open(`${APP.learningDashboardBase}/?meeting=${Auth.meetingID}&sessionToken=${Auth.sessionToken}&lang=${lang}`, '_blank'); }