diff --git a/conference.js b/conference.js index f9e579dcb..116176d36 100644 --- a/conference.js +++ b/conference.js @@ -196,9 +196,11 @@ function maybeRedirectToWelcomePage(options) { // if close page is enabled redirect to it, without further action if (config.enableClosePage) { if (options.feedbackSubmitted) - window.location.pathname = "close.html"; + window.location.pathname = "close.html?guest=" + + APP.tokenData.isGuest; else - window.location.pathname = "close2.html"; + window.location.pathname = "close2.html?guest=" + + APP.tokenData.isGuest; return; }