|
@@ -195,12 +195,13 @@ function muteLocalVideo (muted) {
|
195
|
195
|
function maybeRedirectToWelcomePage(options) {
|
196
|
196
|
// if close page is enabled redirect to it, without further action
|
197
|
197
|
if (config.enableClosePage) {
|
|
198
|
+ // save whether current user is guest or not, before navigating
|
|
199
|
+ // to close page
|
|
200
|
+ window.sessionStorage.setItem('guest', APP.tokenData.isGuest);
|
198
|
201
|
if (options.feedbackSubmitted)
|
199
|
|
- window.location.pathname = "close.html?guest="
|
200
|
|
- + APP.tokenData.isGuest;
|
|
202
|
+ window.location.pathname = "close.html";
|
201
|
203
|
else
|
202
|
|
- window.location.pathname = "close2.html?guest="
|
203
|
|
- + APP.tokenData.isGuest;
|
|
204
|
+ window.location.pathname = "close2.html";
|
204
|
205
|
return;
|
205
|
206
|
}
|
206
|
207
|
|